Skip to content

Commit

Permalink
fix(core): 馃悰 avoid sticky toolbar from clipping on Firefox
Browse files Browse the repository at this point in the history
The sticky toolbar is hidden on a short page when browsing on Firefox (80vh of the body container is taller than the height of the toolbar). Increasing the min-height for the body container should avoid the issue.
  • Loading branch information
alistair3149 committed May 5, 2024
1 parent 3eab91c commit 1d4cdd6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/skins.citizen.styles/layout.less
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

.mw-body,
.parsoid-body {
min-height: 80vh; // avoid footer being in the middle of the page
min-height: 100vh; // avoid footer being in the middle of the page
}

.citizen-body-container {
Expand Down

0 comments on commit 1d4cdd6

Please sign in to comment.