Skip to content
Snippets Groups Projects
Commit 7e3956bf authored by gnaegi's avatar gnaegi
Browse files

OO-269 same min-heigt for content and container

parent 65d2aa78
No related branches found
No related tags found
No related merge requests found
...@@ -47,9 +47,11 @@ body { ...@@ -47,9 +47,11 @@ body {
// @include o-border-radius(6px); // @include o-border-radius(6px);
border-bottom: 1px solid lightGrey; border-bottom: 1px solid lightGrey;
} }
$mainMinHeight: 550px;
#b_main { #b_main {
background:#fff; background:#fff;
min-height:550px; /* min height, should prevent "flashing" of OO sky-banner on slow connections */ min-height: $mainMinHeight; /* min height, should prevent "flashing" of OO sky-banner on slow connections */
clear:both; clear:both;
@include o-box-shadow(0,0,14px,#D3D3D3); @include o-box-shadow(0,0,14px,#D3D3D3);
} }
...@@ -85,7 +87,7 @@ body { ...@@ -85,7 +87,7 @@ body {
border-right: 1px #DDD dotted; border-right: 1px #DDD dotted;
} }
#b_col3_content { #b_col3_content {
min-height: 450px; min-height: $mainMinHeight;
padding: 20px 20px 30px 20px; padding: 20px 20px 30px 20px;
} }
......
source diff could not be displayed: it is too large. Options to address this: view the blob.
source diff could not be displayed: it is too large. Options to address this: view the blob.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment