9 lines
231 B
SCSS
9 lines
231 B
SCSS
|
$color: {{ .Param "color" }};
|
||
|
.progress {
|
||
|
background: linear-gradient(to right, $color var(--scroll), transparent 0);
|
||
|
background-repeat: no-repeat;
|
||
|
position: fixed;
|
||
|
width: 100%;
|
||
|
height: 4px;
|
||
|
z-index: 1000;
|
||
|
}
|