-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.module.css
60 lines (56 loc) · 986 Bytes
/
index.module.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
@reference "../../../styles/globals.css";
.button {
@apply rounded-sm
inline-flex
items-center
justify-center
gap-2
px-4
py-2
transition
duration-300
ease-in-out
focus:outline-none
has-[svg]:*:size-5;
}
.primary {
@apply border-2
border-solid
border-transparent
bg-green-500
text-white
dark:bg-green-400
dark:text-gray-900
hover:border-gray-600
hover:bg-transparent
hover:text-gray-600
hover:dark:text-gray-300
hover:dark:border-gray-300;
}
.secondary {
@apply border-2
border-solid
border-transparent
bg-gray-600
text-white
dark:bg-gray-300
dark:text-gray-900
hover:border-gray-600
hover:bg-transparent
hover:text-gray-600
hover:dark:text-gray-300
hover:dark:border-gray-300;
}
.special {
@apply border-2
border-solid
border-gray-600
bg-transparent
text-gray-600
dark:text-gray-300
dark:border-gray-300
hover:bg-green-500
hover:text-white
hover:dark:bg-green-400
hover:dark:text-gray-900;
}