Merge pull request #20 from Tormak9970/progress-bar

chore: added background styling to progress bar in edge
This commit is contained in:
lscambo13
2024-12-28 20:30:46 +05:30
committed by GitHub

View File

@@ -1243,12 +1243,13 @@ ul.MuiList-root.MuiMenu-list.MuiList-dense>div:first-child {
}
progress::-moz-progress-bar,
progress::-webkit-progress-value {
::-webkit-progress-value {
background: var(--btnSubmitBorderColor) !important;
border-radius: var(--smallRadius) inherit var(--smallRadius) 0;
}
progress {
progress,
::-webkit-progress-bar {
background: var(--hoverGradient) !important;
border: solid var(--lighterBorderColor) var(--borderWidth) !important;
border-radius: var(--smallRadius);
@@ -1257,4 +1258,4 @@ progress {
progress+span {
color: var(--btnSubmitBorderColor) !important;
}
}