Skip to content

Commit ed73e41

Browse files
authored
[Accessibility Audit] fix for controls cut off small screen size (#55481)
1 parent 0974f5f commit ed73e41

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/search/components/input/SearchOverlay.module.scss

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
width: searchVariables.$smSearchOverlayWidth !important;
2424
max-width: 100%;
2525
height: auto;
26-
max-height: 90vh;
26+
max-height: 95vh;
2727
overflow-y: auto;
2828

2929
display: flex;
@@ -67,6 +67,12 @@
6767
padding: 5px 16px 13px 16px;
6868
width: 100%;
6969
background-color: var(--overlay-bgColor);
70+
overflow-y: auto;
71+
min-height: 15vh;
72+
73+
@include breakpoint(sm) {
74+
min-height: fit-content !important;
75+
}
7076
}
7177

7278
.betaToken {

0 commit comments

Comments
 (0)