Skip to content

Commit

Permalink
Fix no color in data
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Tinland committed May 20, 2024
1 parent ebff79b commit 9d7ed3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/styles/core/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,6 @@ const baseStyles = /* css */ `
.simple-bar--no-bar-background {
background-color: transparent;
}
.simple-bar--no-color-in-data {
color: var(--white);
}
.simple-bar--empty {
height: var(--bar-height);
display: flex;
Expand Down Expand Up @@ -90,6 +87,9 @@ const baseStyles = /* css */ `
.simple-bar__data:empty {
display: none;
}
.simple-bar--no-color-in-data .simple-bar__data {
color: var(--white);
}
.simple-bar--no-bar-background .simple-bar__data {
padding: 4px 5px 4px 0;
background-color: var(--background);
Expand Down

0 comments on commit 9d7ed3d

Please sign in to comment.