Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
css: wrap text on higher zoom levels (#22076)
Browse files Browse the repository at this point in the history
This makes it easier to raise the loom level and to read text
without scrolling.

Limitation: the sidenav jumps down at higher zoom levels. To fix
this changes to the html would be necessary.

Also resolves the former width issue on the tor browser page
(the reason for da4db98).
  • Loading branch information
traumschule committed Sep 27, 2018
1 parent c14cc6e commit 8d3ef79
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions css/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ body {

#wrap {
width: 960px;
max-width: 100%;
margin: 0 auto;
}

Expand Down Expand Up @@ -224,6 +225,7 @@ body {

#content {
width: 960px;
max-width: 100%;
}

#content img { max-width: 710px; }
Expand All @@ -239,8 +241,10 @@ body {
#maincol {
float: right;
width: 710px;
max-width: 75%;
margin-bottom: 20px;
}
.tb#maincol { max-width: 100%; }

#dow-don-left,
#maincol-left {
Expand Down
Loading

0 comments on commit 8d3ef79

Please sign in to comment.