-
Notifications
You must be signed in to change notification settings - Fork 0
/
globals.css
48 lines (37 loc) · 979 Bytes
/
globals.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
@tailwind base;
@tailwind components;
@tailwind utilities;
.rdrCalendarWrapper {
@apply bg-base-100 !important;
}
.rdrDay > .rdrDayNumber > span {
@apply text-base-content !important;
}
.rdrDay.rdrDayPassive > .rdrDayNumber > span {
@apply text-base-300 !important;
}
.rdrDay > .rdrDayNumber > span::after {
@apply bg-primary !important;
}
.rdrDay > span {
@apply text-primary !important;
}
.rdrNextPrevButton {
@apply bg-primary !important;
}
.rdrNextPrevButton {
@apply text-primary-content !important;
}
.rdrSelected {
@apply bg-primary text-primary-content !important;
}
button.rdrNextPrevButton.rdrNextButton > i {
@apply border-l-primary-content !important;
}
button.rdrNextPrevButton.rdrPprevButton > i {
@apply border-r-primary-content !important;
}
.rdrYearPicker > select, .rdrMonthPicker > select {
background-image: unset !important;
@apply select select-bordered text-base-content bg-base-100 !important;
}