Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ body {
padding: 0;

display: grid;
grid-template-columns: 250px auto;
grid-template-columns: 250px minmax(0, 1fr);
grid-template-rows: auto 1fr;
grid-template-areas: "logo menu"
"side content"
Expand All @@ -85,7 +85,6 @@ body {
padding: 7px 20px 7px 0px;
/* border-top: 1px solid #27b8f3;*/
/* border-bottom: 1px solid #27b8f3;*/
width: 100%;
margin-top: 2px;
height: 1.5em;
text-align: center;
Expand Down Expand Up @@ -396,7 +395,7 @@ li {

/* When the sidebar and logo are shown (burger menu active) */
body.show-sidebar {
grid-template-columns: 250px auto; /* Two columns: sidebar + content */
grid-template-columns: 250px minmax(0, 1fr);
grid-template-areas:
"logo menu"
"side content"
Expand Down