forked from CodingCatDev/codingcat.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnav-list.css
More file actions
48 lines (43 loc) · 877 Bytes
/
nav-list.css
File metadata and controls
48 lines (43 loc) · 877 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
@layer components {
/* === Lists (Parents) === */
.nav-list,
.nav-list-dl,
.nav-list-nav ul {
/* List Style */
@apply list-none;
/* Spacing */
@apply space-y-1;
}
/* === List Items (Children) === */
.nav-list li {
@apply flex items-center space-x-4;
/* Padding */
@apply p-2;
/* Theme: Rounded */
@apply rounded-token;
}
.nav-list-dl div {
@apply flex items-center space-x-4;
/* Padding */
@apply p-2;
/* Theme: Rounded */
@apply rounded-token;
}
.nav-list-nav a,
.nav-list-nav button,
.nav-list-option {
@apply flex items-center space-x-4;
/* Padding */
@apply px-4 py-2;
/* Hover */
@apply bg-primary-hover-token;
/* Focus */
@apply outline-none focus:ring-outline-token;
/* Cursor */
@apply cursor-pointer;
/* Theme: Rounded */
@apply rounded-token;
/* Override typograpy */
@apply !no-underline;
}
}