react-flex-picker
Version:
Helps to build your own calendar by using prepared components and api to control them
41 lines (34 loc) • 658 B
text/stylus
$weekDaysHeight = 30px;
$headerMonthHeight = 30px;
.month {
margin: 0 10px;
width: 210px;
display: inline-block;
vertical-align: top;
white-space: normal;
}
.headerMonthWrapper {
}
.headerMonth {
height: $headerMonthHeight;
line-height: $headerMonthHeight;
text-align: center;
display: inline-block;
width: 100%;
cursor: default;
}
.headerWeekDays {
border-bottom: 1px grey solid;
span {
display: inline-block;
width: $weekDaysHeight;
height: $weekDaysHeight;
text-align: center;
line-height: $weekDaysHeight;
cursor: default;
}
}
.headerClickable {
cursor: pointer;
background-color: #FFF1BA;
}