fix: better defaults for sidebar mobile

This commit is contained in:
Chuma McPhoy
2024-10-01 12:23:58 +02:00
parent 83b374b33f
commit 3a124f09a1
2 changed files with 5 additions and 3 deletions

View File

@@ -6,6 +6,8 @@
position: relative;
justify-content: center;
align-items: flex-start;
container-name: loyalty-page;
container-type: inline-size;
}
.blocks {

View File

@@ -1,5 +1,5 @@
.aside {
display: none;
display: grid;
container-name: sidebar;
container-type: inline-size;
}
@@ -16,8 +16,8 @@
}
}
@container content-page (max-width: 1366px) {
@container loyalty-page (max-width: 1366px) {
.aside {
display: grid;
display: none;
}
}