From 605fb1158902f7e0ba386be07ebe75ca9b8e2d58 Mon Sep 17 00:00:00 2001 From: Surma Date: Wed, 9 Sep 2015 14:36:43 +0100 Subject: [PATCH] Fix media-query at exactly 1024px (fixes #1577) --- src/layout/_layout.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layout/_layout.scss b/src/layout/_layout.scss index fe05c619..c856fb57 100644 --- a/src/layout/_layout.scss +++ b/src/layout/_layout.scss @@ -243,7 +243,7 @@ width: calc(100% - #{$layout-drawer-width}); } - @media screen and (min-width: $layout-screen-size-threshold) { + @media screen and (min-width: $layout-screen-size-threshold + 1px) { .mdl-layout--fixed-drawer > & { .mdl-layout__header-row { padding-left: 40px;