Skip to content
Snippets Groups Projects

Bug 548884 - Apply position absolute to footer-min for big screens only

1 file
+ 7
2
Compare changes
  • Side-by-side
  • Inline
@@ -134,7 +134,6 @@ footer#solstice-footer {
@@ -134,7 +134,6 @@ footer#solstice-footer {
.footer-min{
.footer-min{
background:@eclipse-highlight-grey;
background:@eclipse-highlight-grey;
border-top: 1px solid darken(@eclipse-highlight-grey, 25%);
border-top: 1px solid darken(@eclipse-highlight-grey, 25%);
position: absolute;
width:100%;
width:100%;
bottom:0px;
bottom:0px;
a{
a{
@@ -160,9 +159,14 @@ footer#solstice-footer {
@@ -160,9 +159,14 @@ footer#solstice-footer {
}
}
body.solstice-footer-min{
body.solstice-footer-min{
margin-bottom:36px;
display: flex;
 
min-height: 100vh;
 
flex-direction: column;
position:static;
position:static;
@media screen and ( max-width: @screen-xs-max) {
@media screen and ( max-width: @screen-xs-max) {
margin-bottom:51px;
margin-bottom:51px;
}
}
 
main {
 
flex: 1 0 auto;
 
}
}
}
 
\ No newline at end of file
Loading