-
-
Save viannaandreBR/2f444fdee01b2417457ba44b55c42468 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DayPicker { | |
background: #28262e; | |
border-radius: 10px; | |
} | |
.DayPicker-wrapper { | |
padding-bottom: 0; | |
} | |
.DayPicker, | |
.DayPicker-Month { | |
width: 100%; | |
} | |
.DayPicker-Month { | |
border-collapse: separate; | |
border-spacing: 8px; | |
margin: 16px; | |
} | |
.DayPicker-Day { | |
width: 40px; | |
height: 40px; | |
} | |
.DayPicker-Day--available:not(.DayPicker-Day--outside) { | |
background: #3e3b47; | |
border-radius: 10px; | |
color: #fff; | |
} | |
.DayPicker:not(.DayPicker--interactionDisabled) | |
.DayPicker-Day:not(.DayPicker-Day--disabled):not(.DayPicker-Day--selected):not(.DayPicker-Day--outside):hover { | |
background: ${shade(0.2, '#3e3b47')}; | |
} | |
.DayPicker-Day--today { | |
font-weight: normal; | |
} | |
.DayPicker-Day--disabled { | |
color: #666360 !important; | |
background: transparent !important; | |
} | |
.DayPicker-Day--selected { | |
background: #ff9000 !important; | |
border-radius: 10px; | |
color: #232129 !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment