-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocs.css
More file actions
105 lines (86 loc) · 2.38 KB
/
Copy pathdocs.css
File metadata and controls
105 lines (86 loc) · 2.38 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
.docs-panel #nd-docs-layout {
--fd-docs-height: 100dvh !important;
min-height: unset !important;
height: var(--fd-docs-height) !important;
max-height: var(--fd-docs-height) !important;
}
.docs-panel .\[grid-area\:main\] {
overflow-y: auto;
scrollbar-width: none;
}
.docs-panel .\[grid-area\:main\]::-webkit-scrollbar {
display: none;
}
.docs-panel .\[grid-area\:toc-popover\] {
display: none !important;
}
.docs-panel .fixed.rounded-xl {
top: 20px !important;
left: 20px !important;
}
.docs-panel [data-radix-scroll-area-viewport] {
mask-image: none !important;
-webkit-mask-image: none !important;
}
.docs-panel
.mask-\[linear-gradient\(to_bottom\,transparent\,white_16px\,white_calc\(100\%-16px\)\,transparent\)\] {
mask: none !important;
-webkit-mask: none !important;
}
.docs-panel #nd-toc [style*="--fd-top"] {
background: rgba(255, 255, 255, 0.22) !important;
}
.docs-panel .prose :is(h2, h3, h4, h5, h6) > a.peer {
display: inline-flex;
align-items: center;
position: relative;
padding-inline-end: 14px;
margin-inline-end: -14px;
}
.docs-panel .prose :is(h2, h3, h4, h5, h6) > svg {
pointer-events: auto;
cursor: pointer;
transition: opacity 140ms ease;
}
.docs-panel .prose :is(h2, h3, h4, h5, h6) > a.peer[data-copied="true"] + svg {
opacity: 1 !important;
color: rgba(255, 255, 255, 0.88);
}
.docs-panel .prose :is(h2, h3, h4, h5, h6)[data-lock="true"] > svg {
opacity: 0 !important;
transition: none !important;
}
.docs-panel .prose :is(h2, h3, h4, h5, h6):hover:not([data-lock="true"]) > svg {
opacity: 1 !important;
}
[data-state="open"][class*="backdrop-blur"],
[data-state="closed"][class*="backdrop-blur"] {
background: rgba(0, 0, 0, 0.6) !important;
backdrop-filter: blur(4px) !important;
}
[data-state][class*="shadow-lg"][class*="end-0"] {
background: #0a0a0a !important;
border-left: 1px solid rgba(255, 255, 255, 0.07) !important;
border-radius: 0 !important;
margin: 0 !important;
height: 100dvh !important;
top: 0 !important;
bottom: 0 !important;
}
.docs-panel *::-webkit-scrollbar {
width: 4px;
}
.docs-panel *::-webkit-scrollbar-track {
background: transparent;
}
.docs-panel *::-webkit-scrollbar-thumb {
background: rgba(255, 255, 255, 0.08);
border-radius: 4px;
}
.docs-panel *::-webkit-scrollbar-thumb:hover {
background: rgba(255, 255, 255, 0.15);
}
.docs-panel * {
scrollbar-width: thin;
scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}