Corrected too heigh pages when not needed

This commit is contained in:
Christian Wolf 2017-11-09 12:01:44 +01:00
parent 6adc768c6a
commit 50cdb39bdf

View File

@ -51,7 +51,6 @@ Structure of page
display: flex; display: flex;
flex-flow: row; flex-flow: row;
width: 100%; width: 100%;
min-height: 100vh;
justify-content: space-around; justify-content: space-around;
} }
@ -88,7 +87,7 @@ Structure of page
} }
#main_content{ #main_content{
flex: 1 1 100%; flex: 1 1 auto;
} }
#footline { #footline {
@ -150,6 +149,7 @@ body
#page-div #page-div
{ {
min-height: calc( 100vh - 40px );
margin-top: 40px; margin-top: 40px;
} }
@ -175,7 +175,8 @@ body
right: 0px; right: 0px;
} }
#left_menu { #left_menu
{
margin: 15px 0px 15px 5px; margin: 15px 0px 15px 5px;
} }
@ -194,7 +195,8 @@ body
padding: 2px 5px 2px 5px; padding: 2px 5px 2px 5px;
} }
#right_column { #right_column
{
margin: 15px 5px 15px 0px; margin: 15px 5px 15px 0px;
} }