-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.module.css
More file actions
91 lines (72 loc) · 1.04 KB
/
index.module.css
File metadata and controls
91 lines (72 loc) · 1.04 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
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
88
89
90
91
@reference "../../styles/index.css";
.alertBox {
@apply flex
flex-row
items-center
gap-2
rounded-sm
px-4
py-3
text-sm
text-white;
a {
@apply font-bold
text-white
underline
hover:text-white;
&:hover {
@apply no-underline;
}
}
&.small {
@apply gap-1
py-2
text-xs;
.title {
@apply px-1;
}
}
.title {
@apply rounded-xs
px-1.5;
}
svg {
@apply inline
size-5;
}
&.info {
@apply bg-info-600;
.title {
@apply bg-info-700;
}
}
&.success {
@apply bg-green-600;
.title {
@apply bg-green-700;
}
}
&.warning {
@apply bg-warning-600;
.title {
@apply bg-warning-700;
}
}
&.danger {
@apply bg-danger-600;
.title {
@apply bg-danger-700;
}
}
&.neutral {
@apply bg-neutral-600;
.title {
@apply bg-neutral-700;
}
}
code {
/* Ignore the styles from `markdown.css` */
all: unset;
@apply font-ibm-plex-mono;
}
}