Skip to content

Commit

Permalink
fix: #2116 progess bar firefox bug (#2376)
Browse files Browse the repository at this point in the history
  • Loading branch information
flomero committed Oct 2, 2023
1 parent 0fce862 commit 53889de
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/components/styled/progress.css
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
.progress {
@apply rounded-box bg-base-content/20 h-2;
&::-moz-progress-bar {
@apply bg-base-content;
@apply bg-base-content rounded-box;
}
&-primary::-moz-progress-bar {
@apply bg-primary;
@apply bg-primary rounded-box;
}
&-secondary::-moz-progress-bar {
@apply bg-secondary;
@apply bg-secondary rounded-box;
}
&-accent::-moz-progress-bar {
@apply bg-accent;
@apply bg-accent rounded-box;
}
&-info::-moz-progress-bar {
@apply bg-info;
@apply bg-info rounded-box;
}
&-success::-moz-progress-bar {
@apply bg-success;
@apply bg-success rounded-box;
}
&-warning::-moz-progress-bar {
@apply bg-warning;
@apply bg-warning rounded-box;
}
&-error::-moz-progress-bar {
@apply bg-error;
@apply bg-error rounded-box;
}

&:indeterminate {
Expand Down

0 comments on commit 53889de

Please sign in to comment.