From 8211a78a784f84602b0e2e8b8ae56174cb0738e0 Mon Sep 17 00:00:00 2001 From: Tankred Hase Date: Sat, 19 Oct 2013 02:57:15 +0200 Subject: [PATCH] remove last update footer in mobile media query --- src/sass/components/_mail-list.scss | 2 +- src/sass/views/_mail-list.scss | 32 +++++++++++++++++------------ 2 files changed, 20 insertions(+), 14 deletions(-) diff --git a/src/sass/components/_mail-list.scss b/src/sass/components/_mail-list.scss index 6d4c8f8..3fc4217 100755 --- a/src/sass/components/_mail-list.scss +++ b/src/sass/components/_mail-list.scss @@ -1,5 +1,5 @@ .mail-list { - $padding-vertical: 12px; + $padding-vertical: 9px; $padding-horizontal: 30px; list-style: none; diff --git a/src/sass/views/_mail-list.scss b/src/sass/views/_mail-list.scss index 128e91e..eeb7508 100755 --- a/src/sass/views/_mail-list.scss +++ b/src/sass/views/_mail-list.scss @@ -46,21 +46,27 @@ } ul { - padding-bottom: 78px; + padding-bottom: 50px; + @include respond-to(desktop) { + padding-bottom: 78px; + } } footer { - cursor: pointer; - position: absolute; - bottom: 0px; - left: 0px; - padding: 0 $nav-padding; - background: darken($color-grey-lightest, 1%); - height: 28px; - width: $content-nav-width; - border-right: 1px solid $color-grey-light; - font-size: $font-size-smaller; - color: $color-grey-dark; - line-height: em(28,12); + height: 0px; + @include respond-to(desktop) { + height: 28px; + cursor: pointer; + position: absolute; + bottom: 0px; + left: 0px; + padding: 0 $nav-padding; + background: darken($color-grey-lightest, 1%); + width: $content-nav-width; + border-right: 1px solid $color-grey-light; + font-size: $font-size-smaller; + color: $color-grey-dark; + line-height: em(28,12); + } } } \ No newline at end of file