-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.css
47 lines (41 loc) · 784 Bytes
/
index.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer ccomponents {
.form-input,
.form-textarea,
.form-multiselect,
.form-select,
.form-checkbox,
.form-radio {
@apply border bg-white text-sm text-slate-800 !important;
}
.form-input,
.form-textarea,
.form-multiselect,
.form-select,
.form-checkbox {
@apply rounded !important;
}
.form-input,
.form-textarea,
.form-multiselect,
.form-select {
@apply focus:border-blue-300 border-slate-300 py-2 px-3 leading-5 shadow-sm hover:border-slate-300 !important;
}
.form-input,
.form-textarea {
@apply placeholder-slate-400;
}
}
html,
body {
margin: 0px;
height: 100%;
width: 100%;
font-family: "Raleway", sans-serif;
}
#root {
height: 100%;
width: 100%;
}