Skip to content

Commit

Permalink
Reduce the padding of footer for mobile devices
Browse files Browse the repository at this point in the history
Signed-off-by: pan93412 <pan93412@gmail.com>
  • Loading branch information
pan93412 committed Feb 22, 2023
1 parent 9d59d13 commit cf72c1b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion subprojects/docs/src/docs/css/manual.css
Original file line number Diff line number Diff line change
Expand Up @@ -1834,7 +1834,14 @@ div.screenshot {
padding: 30px 12px;
max-width: 62.5rem;
margin: 0 auto;
padding-left: 5rem
padding-left: 5rem;
}

@media not screen and (min-width: 64rem) {
.site-footer__navigation {
/* same to nav.docs-navigation for mobiles */
padding: 20px 20px 20px 26px;
}
}

.site-footer__links {
Expand Down

0 comments on commit cf72c1b

Please sign in to comment.