1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

Use more specific styling for kinds in ProgressBar

This commit is contained in:
Bogdan
2023-05-31 04:00:52 +03:00
committed by Mark McDowall
parent d44656bca1
commit dd31c913d2
2 changed files with 34 additions and 34 deletions
+2 -2
View File
@@ -38,7 +38,7 @@ function ProgressBar(props) {
{
showText && width ?
<div
className={styles.backTextContainer}
className={classNames(styles.backTextContainer, styles[kind])}
style={{ width: actualWidth }}
>
<div className={styles.backText}>
@@ -67,7 +67,7 @@ function ProgressBar(props) {
{
showText ?
<div
className={styles.frontTextContainer}
className={classNames(styles.frontTextContainer, styles[kind])}
style={{ width: progressPercent }}
>
<div