SCSS: Fix base content layout not behaving the same way as the one with side content

This commit is contained in:
Molkobain
2021-05-25 16:02:21 +02:00
parent c240a8991d
commit dd284a6c1d
2 changed files with 6 additions and 6 deletions

View File

@@ -77,8 +77,14 @@ body{
z-index: 10;
flex-grow: 1; /* To occupy all height available */
overflow: hidden; /* Only the content areas should scroll */
> * {
height: 100%;
}
}
#ibo-main-content{
padding-top: $ibo-main-content--padding-top;
padding-bottom: $ibo-main-content--padding-bottom;
overflow: auto; /* For scroll to happen in the main content instead of the center content */
}