1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-23 09:22:23 -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: 50px;
@include respond-to(desktop) {
padding-bottom: 78px; padding-bottom: 78px;
} }
}
footer { footer {
height: 0px;
@include respond-to(desktop) {
height: 28px;
cursor: pointer; cursor: pointer;
position: absolute; position: absolute;
bottom: 0px; bottom: 0px;
left: 0px; left: 0px;
padding: 0 $nav-padding; padding: 0 $nav-padding;
background: darken($color-grey-lightest, 1%); background: darken($color-grey-lightest, 1%);
height: 28px;
width: $content-nav-width; width: $content-nav-width;
border-right: 1px solid $color-grey-light; border-right: 1px solid $color-grey-light;
font-size: $font-size-smaller; font-size: $font-size-smaller;
color: $color-grey-dark; color: $color-grey-dark;
line-height: em(28,12); line-height: em(28,12);
} }
}
} }