-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
184fec8
commit f7ef9a8
Showing
4 changed files
with
213 additions
and
37 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/** | ||
* Copyright (c) 2022 Gitpod GmbH. All rights reserved. | ||
* Licensed under the GNU Affero General Public License (AGPL). | ||
* See License-AGPL.txt in the project root for license information. | ||
*/ | ||
|
||
.react-datepicker-wrapper { | ||
width: fit-content !important; | ||
} | ||
|
||
.react-datepicker { | ||
border: 0px !important; | ||
} | ||
|
||
.react-datepicker div { | ||
@apply bg-gray-100 text-gray-500 dark:bg-gray-800 dark:text-gray-400 dark:border-gray-700 | ||
} | ||
|
||
.react-datepicker div.react-datepicker__day--in-selecting-range { | ||
@apply bg-gray-400 dark:bg-gray-600 text-gray-300 | ||
} | ||
|
||
.react-datepicker div.react-datepicker__day--selected { | ||
@apply dark:bg-gray-300 dark:text-gray-800 bg-gray-500 text-gray-100 | ||
} | ||
|
||
.react-datepicker div.react-datepicker__day--selecting-range-start { | ||
@apply dark:bg-gray-300 dark:text-gray-800 text-gray-200 | ||
} | ||
|
||
.react-datepicker div.react-datepicker__day--selecting-range-end { | ||
@apply dark:bg-gray-300 dark:text-gray-800 text-gray-200 | ||
} | ||
|
||
.react-datepicker button { | ||
@apply dark:bg-gray-800 dark:text-gray-200 | ||
} | ||
|
||
.react-datepicker__triangle::before { | ||
border-bottom-color: transparent !important; | ||
} | ||
.react-datepicker__triangle::after { | ||
border-bottom-color: transparent !important; | ||
} |
Oops, something went wrong.