-
Notifications
You must be signed in to change notification settings - Fork 2
/
main.css
87 lines (69 loc) · 1.46 KB
/
main.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/* purgecss start ignore */
@tailwind base;
body {
@apply bg-white;
@apply text-md;
}
a {
@apply text-black underline;
}
.radio-button-ring,.radio-button-ring-selected {
@apply border-2 rounded-full flex justify-center items-center;
width: 14px;
height: 14px;
}
.radio-button-ring {
@apply border-grayblue;
}
.radio-button-ring-selected {
@apply border-activeblue;
}
.radio-button-circle,.radio-button-circle-selected {
@apply rounded-full;
width: 6px;
height: 6px;
}
.radio-button-circle {
@apply bg-white;
}
.radio-button-circle-selected {
@apply bg-activeblue;
}
.legend-remove-button #Combined-Shape {
@apply text-grayblue fill-current;
}
.legend-remove-button:hover #Combined-Shape {
color: #EC8787;
@apply fill-current;
}
.threshold-input {
@apply appearance-none leading-tight bg-bggray overflow-hidden text-base border-bggray border outline-none;
height: 29px;
padding: 2px 8px;
max-width: 60px;
border-radius: 4px;
}
.threshold-input:focus {
@apply border-activeblue;
}
.recharts-cartesian-axis-tick-value {
@apply text-base font-bold;
}
.flex-basis-100 {
flex-basis: 100%;
}
.date-range-button {
height: 29px;
padding: 2px 8px;
border-radius: 4px;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
margin: 0;
}
@tailwind components;
/* purgecss end ignore */
@tailwind utilities;