Skip to content

Commit

Permalink
fix(styling): add border & box-shadow to Flatpickr in Dark Mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Mar 14, 2024
1 parent 3f3e952 commit fdbb6ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/common/src/styles/flatpickr-dark.scss
@@ -1,11 +1,11 @@
/* Flatpickr Dark Theme - only an extract to darken the picker by using .slick-dark-mode */
.flatpickr-calendar.slick-dark-mode {
background-color: #212121;
box-shadow: none;
border: 0;
box-shadow: 0 1px 2px rgb(255 255 255 / 20%);
border: 1px solid #505050;

&.arrowTop:before {
border-bottom-color: #20222c;
border-bottom-color: #505050;
}
&.arrowTop:after {
border-bottom-color: #212121;
Expand Down

0 comments on commit fdbb6ae

Please sign in to comment.