fix(SW-2811): suggest list should follow where-to-field

This commit is contained in:
Michael Zetterberg
2025-05-19 14:40:07 +02:00
parent fbc7366dd6
commit 7be13be2c2
2 changed files with 2 additions and 2 deletions

View File

@@ -46,7 +46,7 @@
.container[data-isopen="true"] .hideWrapper {
border-radius: var(--Corner-radius-lg) var(--Corner-radius-lg) 0 0;
top: 20px;
top: calc(max(var(--sitewide-alert-height), 20px));
}
}

View File

@@ -9,7 +9,7 @@
overflow-y: auto;
padding: var(--Spacing-x2) var(--Spacing-x3);
position: fixed;
top: 170px;
top: calc(140px + max(var(--sitewide-alert-height), 25px));
width: 100%;
height: calc(100% - 200px);
z-index: 10010;