feat(SW-184): implementing mobile design

This commit is contained in:
Erik Tiekstra
2024-08-21 14:38:29 +02:00
parent b51a4c46e8
commit a2e2cf575e
44 changed files with 526 additions and 111 deletions

View File

@@ -1,4 +1,5 @@
.topMenu {
display: none;
background-color: var(--Base-Surface-Subtle-Normal);
padding: var(--Spacing-x2) var(--Spacing-x-one-and-half);
border-bottom: 1px solid var(--Base-Border-Subtle);
@@ -17,3 +18,9 @@
gap: var(--Spacing-x2);
align-items: center;
}
@media screen and (min-width: 768px) {
.topMenu {
display: block;
}
}