Add event theme color for badge

This commit is contained in:
Julie Lenaerts 2025-04-28 16:46:17 +02:00
parent c1530d701f
commit ad46f606a3
2 changed files with 9 additions and 2 deletions

View File

@ -10,6 +10,7 @@ $chill-household-context: #929d69;
// Badges colors
$social-issue-color: #4bafe8;
$social-action-color: $orange;
$event-theme-color: #ecc546;
$activity-color: yellowgreen;
// budget colors

View File

@ -10,7 +10,8 @@
/// SOCIAL-ISSUE AND SOCIAL-ACTION
&.entity-social-issue,
&.entity-social-action {
&.entity-social-action,
&.entity-event-theme {
margin-right: 0.3em;
font-size: 120%;
span.badge {
@ -32,4 +33,9 @@
@include badge_social($social-action-color);
}
}
&.entity-event-theme {
span.badge {
@include badge_social($event-theme-color);
}
}
}