refactor(SW-302): split upp function into two
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user