mirror of
https://github.com/frappe/air-datepicker.git
synced 2026-01-14 11:01:22 +08:00
42 lines
713 B
SCSS
42 lines
713 B
SCSS
@import "datepicker-config";
|
|
|
|
/* -------------------------------------------------
|
|
Datepicker
|
|
------------------------------------------------- */
|
|
|
|
.datepicker {
|
|
border: 1px solid $colorGrey;
|
|
border-radius: $datepickerBorderRadius;
|
|
box-sizing: content-box;
|
|
width: $datepickerWidth;
|
|
}
|
|
|
|
// Body
|
|
// -------------------------------------------------
|
|
|
|
.datepicker--body {
|
|
display: none;
|
|
|
|
&.active {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
|
|
// Day names
|
|
// -------------------------
|
|
|
|
.datepicker--days-names {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
}
|
|
.datepicker--day-name {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: $dayCellSize;
|
|
height: $dayCellSize;
|
|
text-align: center;
|
|
}
|
|
|