Radarr/frontend/src/Calendar/Day/CalendarDay.css
Qstick 850bfdcf82 New: Native Theme Engine
Co-Authored-By: Zak Saunders <1936903+thezak48@users.noreply.github.com>
2022-11-20 11:49:50 -06:00

25 lines
450 B
CSS

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