24 lines
307 B
CSS
24 lines
307 B
CSS
|
#nprogress {
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
#nprogress .bar {
|
||
|
position: fixed;
|
||
|
z-index: 2000;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 5px;
|
||
|
background: var(--fg);
|
||
|
}
|
||
|
|
||
|
#nprogress::after {
|
||
|
content: "";
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
width: 100%;
|
||
|
height: 5px;
|
||
|
background: transparent;
|
||
|
}
|