-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathtailwind.css
More file actions
53 lines (45 loc) · 1.32 KB
/
tailwind.css
File metadata and controls
53 lines (45 loc) · 1.32 KB
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
49
50
51
52
53
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer components {
.styled-datepicker .calendar__cell {
height: 32px;
width: 32px;
max-height: 32px;
max-width: 32px;
@apply text-sm text-center rounded-lg;
}
.styled-datepicker .calendar__cell[data-is-range-selection] {
@apply bg-blue-100 rounded-none text-gray-800 !important;
}
.styled-datepicker .calendar__cell[data-is-selection-start] {
@apply bg-blue-500 rounded-l-lg text-white !important;
}
.styled-datepicker .calendar__cell[data-is-selection-end] {
@apply bg-blue-500 rounded-r-lg text-white !important;
}
.styled-datepicker .calendar__cell[data-is-range-selection]:focus-within {
@apply bg-blue-400 text-white !important;
}
.styled-datepicker .calendar__cell:focus-within {
@apply bg-gray-100;
}
.styled-datepicker.calendar [data-weekend] {
@apply text-red-600;
}
.styled-datepicker.calendar [aria-selected="true"] {
@apply text-white bg-blue-500;
}
.styled-datepicker.calendar [aria-selected]:focus-within {
@apply bg-gray-100;
}
.styled-datepicker.calendar [aria-selected="true"]:focus-within {
@apply text-white bg-blue-400;
}
.styled-datepicker.calendar [aria-disabled="true"] {
@apply text-gray-500;
}
.styled-datepicker.calendar span {
outline: none;
}
}