trying to fix sticky footer in safari by unifing markup

This commit is contained in:
Lisa Passing 2015-04-07 17:49:04 +02:00
parent 5db4a2ff60
commit f3543bf225
4 changed files with 28 additions and 25 deletions

View File

@ -2,6 +2,8 @@
* Footer on the dashboard
*/
$footer-height: 204px
a
color : $color-link
text-decoration : none
@ -25,11 +27,11 @@ footer
height: auto
@media (min-width: 640px)
.wrapper
padding-bottom: 204px
padding-bottom: $footer-height + 50
footer
margin-top: -204px
min-height: 204px
margin-top: - $footer-height
min-height: $footer-height
footer h3
font-size : 15px
@ -87,5 +89,3 @@ footer a:active
.status-circle.major
background: #e74c3c
.wrapper:not(.centered) ~ footer
display: none

View File

@ -25,7 +25,7 @@
content: ""
position: absolute
left: 0
bottom: -4px
bottom: -0.25em
width: 100%
height: 2px
background-color: $teal2

View File

@ -1,14 +1,15 @@
<div class="centered">
<div class="wrapper wrapper-dashboard">
<header id="top" class="top">
<div class="wrapper wrapper-dashboard">
<header id="top" class="top">
<div class="centered">
{{render "top"}}
</header>
</div>
</header>
<div class="centered">
{{yield}}
</div>
<footer>
{{render "footer"}}
</footer>
</div>
<footer>
{{render "footer"}}
</footer>

View File

@ -1,15 +1,17 @@
<header id="top" class="topbar">
<div class="wrapper">
<header id="top" class="topbar">
<div class="centered">
{{render "top"}}
</div>
</header>
<div class="centered">
{{render "top"}}
</div>
</header>
{{render "flash"}}
<div id="main" class="main" role="main">
{{yield}}
<div class="wrapper centered">
{{render "flash"}}
<div id="main" class="main" role="main">
{{yield}}
{{outlet "left"}}
{{outlet "left"}}
</div>
</div>
</div>