fix(sw-350): Search field label

This commit is contained in:
Pontus Dreij
2024-10-11 10:53:54 +02:00
parent 7a6af05447
commit 89d65cec38
3 changed files with 11 additions and 3 deletions

View File

@@ -22,6 +22,7 @@
@media screen and (min-width: 768px) {
.section {
display: flex;
width: 100%;
}
.default {
@@ -35,6 +36,13 @@
var(--Spacing-x-one-and-half) var(--Spacing-x1);
}
.section {
width: min(
calc(100dvw - (var(--Spacing-x2) * 2)),
var(--max-width-navigation)
);
}
.full {
padding: var(--Spacing-x1) 0;
}