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
9 lines
123 B
SCSS
9 lines
123 B
SCSS
.progress-bar-container {
|
|
height: 2px;
|
|
overflow: hidden;
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100vw;
|
|
z-index: 11;
|
|
}
|