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:
Kumi 2024-05-30 12:17:37 +02:00
parent 99a5f96157
commit 95387eafae
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -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 */