Skip to content

Commit

Permalink
fix(css): fix padding on mobile
Browse files Browse the repository at this point in the history
Fix #121
  • Loading branch information
posva committed Nov 11, 2020
1 parent f4f019e commit 9c7293b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/client/theme-default/styles/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,12 @@ body {

.theme main {
padding-top: var(--header-height);
padding-left: var(--sidebar-width);
}

@media screen and (min-width: 960px) {
.theme main {
padding-left: var(--sidebar-width);
}
}

@media screen and (min-width: 720px) {
Expand Down

0 comments on commit 9c7293b

Please sign in to comment.