Skip to content
This repository was archived by the owner on Mar 9, 2022. It is now read-only.

Commit

Permalink
fix: fix iPad TOC orientation css bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonzq committed Aug 21, 2019
1 parent 99d52da commit f1ec275
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions assets/css/_core/_media.scss
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@

/* iPads (landscape) ----------- */

@media only screen and (min-width: 1366px) {
@media only screen and (min-width: 1080px) {
.post-warp {
max-width: 560px !important;
}
Expand All @@ -172,7 +172,16 @@

/* Desktops and laptops ----------- */

@media only screen and (min-width: 1600) {
@media only screen and (min-width: 1300px) {
.post-warp {
max-width: 780px !important;
}

.post-toc {
display: block !important;
margin-left: 800px !important;
}

.navbar-mobile {
display: none !important;
}
Expand Down

0 comments on commit f1ec275

Please sign in to comment.