mirror of
https://github.com/overleaf/overleaf.git
synced 2024-12-26 07:01:04 +00:00
Merge pull request #83 from sharelatex/pr-fix-full-height-safari
Fix page height on Safari when zoomed
This commit is contained in:
commit
683c93c2f9
1 changed files with 2 additions and 1 deletions
|
@ -21,6 +21,7 @@
|
||||||
html {
|
html {
|
||||||
//font-size: 62.5%;
|
//font-size: 62.5%;
|
||||||
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
||||||
|
height: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
@ -29,7 +30,7 @@ body {
|
||||||
line-height: @line-height-base;
|
line-height: @line-height-base;
|
||||||
color: @text-color;
|
color: @text-color;
|
||||||
background-color: @body-bg;
|
background-color: @body-bg;
|
||||||
min-height: 100vh;
|
min-height: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
padding-top: @header-height;
|
padding-top: @header-height;
|
||||||
padding-bottom: @footer-height;
|
padding-bottom: @footer-height;
|
||||||
|
|
Loading…
Reference in a new issue