Skip to content

Commit

Permalink
fix(datepickers): datepicker paddings and colors fix (epicmaxco#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
smartapant authored and asvae committed May 7, 2018
1 parent 4823cdb commit 4c9876a
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@
$daySize: 1.75rem;
.flatpickr-calendar {
width: $daySize * 7 + $dayPadding * 6 + $borderPadding * 2 !important;
background-color: $datepickerBackground;
border-radius: 0;
box-shadow: none;
Expand Down Expand Up @@ -96,7 +97,7 @@
}
.flatpickr-days {
width: $daySize * 7 + $dayPadding * 6 + $borderPadding * 2;
width: $daySize * 7 + $dayPadding * 6 + $borderPadding * 2 !important;
padding: 0 $borderPadding $borderPadding;
display: block;
.dayContainer {
Expand Down Expand Up @@ -160,6 +161,10 @@
font-size: 1rem;
}
.numInputWrapper {
.numInput.cur-year {
color: $white;
}
.arrowUp {
&:hover {
&::after {
Expand Down

0 comments on commit 4c9876a

Please sign in to comment.