mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-25 07:48:54 +00:00
59ee34b710
I hate safari just like IE. Close #542
14 lines
341 B
SCSS
14 lines
341 B
SCSS
.reading-progress-bar {
|
|
--progress: 0;
|
|
height: var(--progress-h, 2px);
|
|
width: var(--progress);
|
|
background-color: var(--bg-progress, var(--#{$prefix}info));
|
|
position: fixed;
|
|
@include z-index(2);
|
|
@extend .print-d-none;
|
|
|
|
[data-theme="dark"] & {
|
|
background-color: var(--bg-progress-dark, var(--#{$prefix}info-dark));
|
|
}
|
|
}
|