refactor(SW-302): split upp function into two

This commit is contained in:
Matilda Landström
2024-09-21 11:19:38 +02:00
parent 32c9e73ba9
commit a12eea5493
3 changed files with 51 additions and 50 deletions

View File

@@ -11,22 +11,22 @@
}
.desktopGrid {
display: none;
display: none !important;
}
.mobileGrid {
display: grid;
display: grid !important;
gap: var(--Spacing-x-quarter);
}
@media screen and (min-width: 768px) {
.desktopGrid {
display: grid;
display: grid !important;
gap: var(--Spacing-x1);
grid-template-columns: repeat(3, 1fr);
}
.mobileGrid {
display: none;
display: none !important;
}
}