mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-09-02 11:42:39 +00:00
12 lines
250 B
SCSS
12 lines
250 B
SCSS
.reading-progress-bar {
|
|
--progress: 0;
|
|
width: var(--progress);
|
|
background-color: var(--bg-progress, $info);
|
|
z-index: 150;
|
|
position: fixed;
|
|
|
|
[data-theme="dark"] & {
|
|
background-color: var(--bg-progress-dark, darken($info, 5%));
|
|
}
|
|
}
|