1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-18 21:35:51 -04:00
Files
Radarr/frontend/src/Calendar/Day/CalendarDay.css
T
2019-07-26 22:25:01 -04:00

26 lines
420 B
CSS

.day {
flex: 1 0 14.28%;
overflow: hidden;
min-height: 70px;
border-bottom: 1px solid $calendarBorderColor;
border-left: 1px solid $calendarBorderColor;
}
.isSingleDay {
width: 100%;
}
.dayOfMonth {
padding-right: 5px;
border-bottom: 1px solid $calendarBorderColor;
text-align: right;
}
.isToday {
background-color: $calendarTodayBackgroundColor;
}
.isDifferentMonth {
color: $disabledColor;
}