CSS: Fix flex-box scrolling for different browsers
This commit is contained in:
parent
168fcfec36
commit
680467a1aa
|
@ -7,6 +7,7 @@ html {
|
||||||
|
|
||||||
body {
|
body {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#layout {
|
#layout {
|
||||||
|
|
|
@ -104,6 +104,11 @@
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#main {
|
||||||
|
flex: 1 1 auto;
|
||||||
|
height: 0;
|
||||||
|
}
|
||||||
|
|
||||||
ul > .selected > a:after,
|
ul > .selected > a:after,
|
||||||
ul > .nav-item.active:after {
|
ul > .nav-item.active:after {
|
||||||
display: none;
|
display: none;
|
||||||
|
|
Loading…
Reference in New Issue