mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-04 12:47:14 +02:00
Fix body height by changing CSS height property to min-height (#556)
This commit is contained in:
parent
86edbec1d0
commit
858b6f347f
1 changed files with 2 additions and 2 deletions
|
@ -49,7 +49,7 @@ body {
|
||||||
background: #f9f9f9;
|
background: #f9f9f9;
|
||||||
color: #393939;
|
color: #393939;
|
||||||
font: normal 16px/1.4em -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Arial,sans-serif;
|
font: normal 16px/1.4em -apple-system,system-ui,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",Arial,sans-serif;
|
||||||
height: 100vh;
|
min-height: 100vh;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
text-rendering: optimizeLegibility;
|
text-rendering: optimizeLegibility;
|
||||||
}
|
}
|
||||||
|
@ -1064,7 +1064,7 @@ ul#languages li {
|
||||||
position: relative;
|
position: relative;
|
||||||
left: 0;
|
left: 0;
|
||||||
z-index: 99;
|
z-index: 99;
|
||||||
height: 100%;
|
min-height: 100%;
|
||||||
}
|
}
|
||||||
.navPusher::after {
|
.navPusher::after {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
Loading…
Add table
Reference in a new issue