-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathindex.module.css
More file actions
54 lines (49 loc) · 901 Bytes
/
index.module.css
File metadata and controls
54 lines (49 loc) · 901 Bytes
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
@reference "../../../../styles/index.css";
.hit {
> a {
@apply flex
items-center
gap-4
rounded-lg
border
border-transparent
px-2
py-3
text-sm
duration-300
outline-none
hover:bg-neutral-300
focus-visible:border-green-600
focus-visible:bg-transparent
motion-safe:transition-colors
dark:bg-neutral-950
dark:hover:bg-neutral-900;
}
svg {
@apply size-5
shrink-0;
}
}
.link {
@apply rounded-xl
bg-neutral-100
px-4
py-2
text-neutral-900
duration-300
hover:bg-neutral-200
focus:bg-neutral-200
motion-safe:transition-colors
dark:bg-neutral-950
dark:text-neutral-200
hover:dark:bg-neutral-900
focus:dark:bg-neutral-900;
svg {
@apply size-5;
}
}
.hitDescription {
@apply text-sm
text-neutral-600
dark:text-neutral-700;
}