Remove hardcoded colors from non theme file and replace hardcoded value with variable

This commit is contained in:
Stephen Abello
2026-03-05 15:35:49 +01:00
parent 44c0a025a8
commit 884d64a42a
2 changed files with 1 additions and 3 deletions

View File

@@ -10,8 +10,6 @@ $ipb-progress--bar--border-radius: $ipb-progress--border-radius !default;
}
.ipb-progress--bar, .progress-bar {
background-color: $ipb-color-primary-600;
color: #ffffff;
line-height: $ipb-progress--bar--line-height;
border-radius: $ipb-progress--bar--border-radius;

View File

@@ -9,6 +9,6 @@ $ipb-progress--bar--color: $ipb-color-white-100 !default;
}
.ipb-progress--bar, .progress-bar {
background-color: $ipb-color-primary-700;
background-color: $ipb-progress--bar--background-color;
color: $ipb-progress--bar--color;
}