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
This commit is contained in:
Georgios Kalpakas 2017-05-31 19:22:27 +03:00 committed by Alex Rickabaugh
parent d5ce086089
commit 35f714e438
1 changed files with 3 additions and 7 deletions

View File

@ -2,11 +2,7 @@
height: 2px; height: 2px;
overflow: hidden; overflow: hidden;
position: fixed; position: fixed;
top: 64px; top: 0;
width: 100vw; width: 100vw;
z-index: 5; z-index: 11;
@media (max-width: 600px) {
top: 56px;
}
} }