angular-docs-cn/aio/src/styles/2-modules/_progress-bar.scss
Georgios Kalpakas 35f714e438 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
2017-06-02 17:31:53 -04:00

9 lines
123 B
SCSS

.progress-bar-container {
height: 2px;
overflow: hidden;
position: fixed;
top: 0;
width: 100vw;
z-index: 11;
}