mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
13 lines
332 B
SCSS
13 lines
332 B
SCSS
.reading-progress-bar {
|
|
height: var(--progress-h, 2px);
|
|
width: var(--progress, 0);
|
|
background-color: var(--bg-progress, var(#{$rootPrefix}success));
|
|
position: fixed;
|
|
@include z-index(2);
|
|
@extend .print-d-none;
|
|
|
|
[data-theme="dark"] & {
|
|
background-color: var(--bg-progress-dark, #{$global-font-color-dark});
|
|
}
|
|
}
|