Merged in fix/SW-2314-search-modal-shifting (pull request #1831)

fix: search modal shifted to the right on mobile

Approved-by: Linus Flood
This commit is contained in:
Joakim Jäderberg
2025-04-17 08:56:02 +00:00
parent cfa8c166a3
commit 4e17bf1391

View File

@@ -13,6 +13,7 @@
width: 100%;
padding: var(--Spacing-x3) var(--Spacing-x2) var(--Spacing-x7);
position: fixed;
left: 0;
bottom: -100%;
transition: bottom 300ms ease;
}
@@ -34,6 +35,7 @@
}
.wrapper[data-open="true"] .formContainer {
left: 0;
bottom: 0;
}