forked from CopilotKit/CopilotKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobals.css
More file actions
85 lines (64 loc) · 1.31 KB
/
Copy pathglobals.css
File metadata and controls
85 lines (64 loc) · 1.31 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
@tailwind base;
@tailwind components;
@tailwind utilities;
h1, h2, h3, h4, h5, h6 {
@apply border-b-0 !important;
}
:root {
--nextra-bg: #fffbf5;
}
.nextra-sidebar-container {
@apply w-full md:w-72;
background: var(--nextra-bg);
}
.nextra-nav-container {
background: var(--nextra-bg);
}
body {
background: var(--nextra-bg);
}
footer {
background-color: var(--nextra-bg);
}
.nextra-code pre {
background: #fffdfa;
}
.ck-property-reference:not(:last-child) {
@apply border-b border-b-neutral-100;
}
.ck-property-reference .ck-property-reference {
@apply ml-6;
}
button:has(.nested-title) {
@apply mt-6 pointer-events-none;
}
button:has(.nested-title) > svg {
@apply hidden;
}
button:has(.disable-menu) > svg {
@apply hidden;
}
[id^="headlessui-menu-items-"] {
@apply hidden !important;
}
.nested-title {
@apply text-gray-900 font-semibold [&:not(:first-child)]:mt-5 mb-2 pb-1.5;
}
li:has(.icon-container) > div > div > ul {
@apply ml-0 pl-0 before:w-0;
}
li:has(.icon-container) > div > div > ul ul {
@apply ml-2 px-2 before:w-[1px];
}
.icon-container .icon {
@apply hidden;
}
.nextra-sidebar-container .icon-container .icon {
@apply flex !important;
}
.nextra-code button[title="Toggle word wrap"] {
background: var(--nextra-bg);
}
.nextra-search-results {
@apply bg-white/50;
}