From 35f714e43820c799b4b84fe09f68eaec56347de9 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Wed, 31 May 2017 19:22:27 +0300 Subject: [PATCH] fix(aio): place progress bar at the top Previously, the progress bar would be placed right under the static top bar. Now that the top bar i not tatic any more, it makes more sense to place the progress bar at the top of the page. Fixes #17103 --- aio/src/styles/2-modules/_progress-bar.scss | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/aio/src/styles/2-modules/_progress-bar.scss b/aio/src/styles/2-modules/_progress-bar.scss index 36a4c751f0..bf9e6480cf 100644 --- a/aio/src/styles/2-modules/_progress-bar.scss +++ b/aio/src/styles/2-modules/_progress-bar.scss @@ -2,11 +2,7 @@ height: 2px; overflow: hidden; position: fixed; - top: 64px; + top: 0; width: 100vw; - z-index: 5; - - @media (max-width: 600px) { - top: 56px; - } -} \ No newline at end of file + z-index: 11; +}