Admin: display nav on mobile

This commit is contained in:
Alex Gleason 2020-12-30 08:43:24 -06:00
parent 98a91bd88d
commit 560d9d642c
No known key found for this signature in database
GPG key ID: 7211D1F99744FBB7
3 changed files with 21 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View file

@ -94,3 +94,24 @@
.slist .item-list article:nth-child(2n-1) .unapproved-account { .slist .item-list article:nth-child(2n-1) .unapproved-account {
background-color: hsla(var(--accent-color_hsl), 0.07); background-color: hsla(var(--accent-color_hsl), 0.07);
} }
.page--admin {
@media screen and (max-width: 895px) {
.columns-area__panels {
flex-direction: column;
align-items: center;
&__pane--left {
display: block;
width: 100%;
max-width: 600px;
padding: 20px 20px 0;
box-sizing: border-box;
.columns-area__panels__pane__inner {
width: auto;
}
}
}
}
}