mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-18 00:32:06 +00:00
added bg circle
This commit is contained in:
parent
ea23012884
commit
fc862aa166
2 changed files with 6 additions and 1 deletions
|
|
@ -110,7 +110,8 @@ const Slider = ({ className, value, buffered, minimumValue, maximumValue, disabl
|
|||
</div>
|
||||
<div className={styles['layer']}>
|
||||
<svg className={styles['thumb']} style={{ marginLeft: `calc(100% * ${thumbPosition})` }} viewBox={'0 0 10 10'}>
|
||||
<circle cx={'5'} cy={'5'} r={'5'} />
|
||||
<circle cx={'5'} cy={'5'} r={'4'} className={styles['background-circle']} />
|
||||
<circle cx={'5'} cy={'5'} r={'2.5'} />
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -66,4 +66,8 @@ html.active-slider-within {
|
|||
transform: translateX(-50%);
|
||||
fill: var(--primary-foreground-color);
|
||||
}
|
||||
.background-circle {
|
||||
filter: brightness(130%);
|
||||
fill: var(--primary-accent-color);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue