Skip to content

Commit

Permalink
Recent Feed Overhaul - Remove extra padding in mobile view (#97059)
Browse files Browse the repository at this point in the history
* Remove extra padding

* Only change 600px and smaller
  • Loading branch information
davemart-in authored Dec 4, 2024
1 parent 8e6cf8f commit 13281f6
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions client/reader/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,14 @@ body.is-section-reader {
}

@media only screen and (max-width: 781px) {
div.layout.is-global-sidebar-visible {
.layout__primary {
overflow-x: auto;
}
div.layout.is-global-sidebar-visible .layout__primary {
overflow-x: auto;
}
}

@media only screen and (max-width: 600px) {
div.layout.is-global-sidebar-visible .main {
padding: 24px 0;
}
}
}
Expand Down

0 comments on commit 13281f6

Please sign in to comment.