1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-23 01:12:19 -05:00

remove last update footer in mobile media query

This commit is contained in:
Tankred Hase 2013-10-19 02:57:15 +02:00
parent e10e480416
commit 8211a78a78
2 changed files with 20 additions and 14 deletions

View File

@ -1,5 +1,5 @@
.mail-list { .mail-list {
$padding-vertical: 12px; $padding-vertical: 9px;
$padding-horizontal: 30px; $padding-horizontal: 30px;
list-style: none; list-style: none;

View File

@ -46,21 +46,27 @@
} }
ul { ul {
padding-bottom: 78px; padding-bottom: 50px;
@include respond-to(desktop) {
padding-bottom: 78px;
}
} }
footer { footer {
cursor: pointer; height: 0px;
position: absolute; @include respond-to(desktop) {
bottom: 0px; height: 28px;
left: 0px; cursor: pointer;
padding: 0 $nav-padding; position: absolute;
background: darken($color-grey-lightest, 1%); bottom: 0px;
height: 28px; left: 0px;
width: $content-nav-width; padding: 0 $nav-padding;
border-right: 1px solid $color-grey-light; background: darken($color-grey-lightest, 1%);
font-size: $font-size-smaller; width: $content-nav-width;
color: $color-grey-dark; border-right: 1px solid $color-grey-light;
line-height: em(28,12); font-size: $font-size-smaller;
color: $color-grey-dark;
line-height: em(28,12);
}
} }
} }