From 6be6db8f5e1e788be5a9efd3bf52a00f7f356c17 Mon Sep 17 00:00:00 2001 From: jirik Date: Thu, 12 Jan 2017 15:34:38 +0100 Subject: [PATCH] Fix hidden map attributions (CSS issue) --- src/styles/_components.scss | 3 +-- src/styles/_layout.scss | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/src/styles/_components.scss b/src/styles/_components.scss index 6813c6d..67447e4 100644 --- a/src/styles/_components.scss +++ b/src/styles/_components.scss @@ -4,7 +4,7 @@ top: 40px; right: 0; bottom: 0; - height: 100%; + height: calc(100% - $toolbar-height); width: 75%; } @@ -127,4 +127,3 @@ color: $color-red; } } - diff --git a/src/styles/_layout.scss b/src/styles/_layout.scss index 1a900bc..2a88609 100644 --- a/src/styles/_layout.scss +++ b/src/styles/_layout.scss @@ -17,7 +17,7 @@ &-list { position: fixed; bottom: 0; - height: 100%; + height: calc(100% - $toolbar-height); top: 40px; left: 0; z-index: 3; @@ -29,7 +29,7 @@ &-drawer { position: fixed; bottom: 0; - height: 100%; + height: calc(100% - $toolbar-height); top: 40px; left: 200px; z-index: 1;