Код: Выделить всё
.app-container {
background-color: $primary-surface-color;
color: $white;
min-block-size: 100vh;
min-block-size: 100dvh;
display: grid;
grid-template-columns: 5rem 1fr;
grid-template-rows: 4rem 1fr auto;
grid-template-areas:
"navbar header"
"navbar main"
"navbar footer";
transition: grid-template-columns 0.3s ease;
}
Код: Выделить всё
header {
top: 0;
position: sticky;
grid-area: header;
display: grid;
background-color: $black-almost;
opacity: 0.9;
color: white;
padding: 0;
align-items: center;
grid-template-columns: 1fr 1fr;
grid-template-areas:
"header-left header-right";
}
Код: Выделить всё
.hamburger-menu {
grid: header-left;
justify-content: start;
cursor: pointer;
}
Подробнее здесь: https://stackoverflow.com/questions/795 ... red-in-css
Мобильная версия