-
Notifications
You must be signed in to change notification settings - Fork 202
/
Copy pathapp.css
67 lines (53 loc) · 998 Bytes
/
app.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
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
.py-navbar-item {
@apply py-6
}
.pt-navbar-item {
@apply pt-6
}
.pb-navbar-item {
@apply pb-6
}
.px-navbar-item {
@apply px-3
}
.pl-navbar-item {
@apply pl-3
}
.pr-navbar-item {
@apply pr-3
}
}
@layer components {
.btn-primary {
@apply text-white bg-purple-600 py-2 px-4 rounded shadow-md hover:bg-purple-700 active:bg-purple-800 transition-colors;
}
.btn-primary:disabled {
@apply bg-gray-400 hover:bg-gray-300;
}
}
body {
background-color: #e5e7eb;
}
.wysiwyg-content h3,
.wysiwyg-content h4 {
font-weight: 600;
margin-top: 1rem;
}
.wysiwyg-content table > tbody > tr > td {
padding: 0.25rem 0.125rem;
}
.wysiwyg-content table > tbody > tr > td:first-child {
font-weight: bold;
}
.table > tbody > tr > td,
.table > thead > tr > th {
padding: 0.5rem;
}
.table-sm > tbody > tr > td,
.table-sm > thead > tr > th {
padding: 0.25rem;
}