28 lines
695 B
SCSS
28 lines
695 B
SCSS
@import "~theme/globals";
|
|
|
|
:host {
|
|
|
|
--addon-calendar-blank-day-background-color: var(--light);
|
|
|
|
.item.addon-calendar-event {
|
|
> ion-icon {
|
|
color: white;
|
|
border-radius: 50%;
|
|
padding: 0.7rem;
|
|
--margin-vertical: 12px;
|
|
--margin-end: 12px;
|
|
margin-top: var(--margin-vertical);
|
|
margin-bottom: var(--margin-vertical);
|
|
@include margin-horizontal(null, var(--margin-end));
|
|
|
|
}
|
|
|
|
@each $category, $value in $calendar-event-category-colors {
|
|
&.addon-calendar-eventtype-#{$category} > ion-icon {
|
|
background-color: $value;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|