-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathstyles.css
More file actions
41 lines (33 loc) · 642 Bytes
/
styles.css
File metadata and controls
41 lines (33 loc) · 642 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
@reference "../../styles.css";
.menu {
&-item {
&:hover,
&:active {
@apply !bg-base-content/10 !text-base-content;
}
}
&-link {
@apply flex items-center gap-2 whitespace-pre-wrap;
&-active,
&-active:hover,
&-active:active {
@apply !text-primary;
}
}
&-category {
grid-auto-columns: 1fr auto;
@apply p-0;
& > .menu-link {
@apply pl-4 py-2;
}
&-button {
@apply btn btn-ghost btn-sm;
}
&-icon {
@apply w-4 h-4 fill-current transition-transform duration-300 ease-in-out;
&-collapsed {
@apply -rotate-90;
}
}
}
}