salix/modules/zone/front/calendar/style.scss

43 lines
1.1 KiB
SCSS
Raw Normal View History

2019-09-25 18:06:42 +00:00
@import "variables";
2019-06-27 09:48:33 +00:00
2019-09-25 18:06:42 +00:00
vn-zone-calendar {
2019-10-23 15:38:35 +00:00
display: block;
& > vn-card {
& > .header {
display: flex;
align-items: center;
justify-content: space-between;
background-color: $color-main;
color: white;
font-weight: bold;
height: 45px;
& > .vn-button {
color: inherit;
height: 100%;
}
2019-09-25 18:06:42 +00:00
}
2019-10-23 15:38:35 +00:00
& > .calendars {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
& > .vn-calendar {
2020-04-02 12:52:02 +00:00
max-width: 288px;
2019-10-23 15:38:35 +00:00
#days-container .day {
2019-10-23 15:38:35 +00:00
&.event .day-number {
background-color: $color-success;
}
&.excluded .day-number {
background-color: $color-alert;
}
2022-05-16 05:17:29 +00:00
&.geoExcluded .day-number {
2022-05-26 13:08:23 +00:00
background-color: $color-main;
2022-05-16 05:17:29 +00:00
}
2019-10-23 15:38:35 +00:00
}
}
2019-09-25 18:06:42 +00:00
}
}
}