feat: enhance icon theming flexibility
Introduced a new styling rule for `.bs-icon-circle` to apply a subtler background color, improving visual integration across themes. This change complements existing icon styles by offering an alternative option for a less prominent icon appearance, aimed at enhancing UI adaptability and consistency in different contexts. This update is in response to feedback requesting more nuanced design elements for diverse UI backgrounds.
This commit is contained in:
parent
99a5f96157
commit
95387eafae
1 changed files with 5 additions and 1 deletions
|
@ -124,7 +124,11 @@ h5 {
|
|||
}
|
||||
|
||||
.bs-icon.bs-icon-lg svg {
|
||||
fill: var(--bs-primary)
|
||||
fill: var(--bs-primary);
|
||||
}
|
||||
|
||||
.bs-icon-circle svg {
|
||||
fill: var(--bs-primary-bg-subtle);
|
||||
}
|
||||
|
||||
/* Responsive Styles */
|
||||
|
|
Loading…
Reference in a new issue