@x-wave/blog 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +584 -580
- package/package.json +1 -1
- package/styles/_variables.scss +21 -20
- package/styles/global.scss +157 -177
- package/styles/main.scss +67 -82
- package/index.css +0 -1
package/package.json
CHANGED
package/styles/_variables.scss
CHANGED
|
@@ -1,24 +1,25 @@
|
|
|
1
1
|
// Color Variables - Using CSS custom properties for theme support
|
|
2
|
-
|
|
3
|
-
$color-
|
|
4
|
-
$color-
|
|
5
|
-
$color-
|
|
6
|
-
$color-card
|
|
7
|
-
$color-
|
|
8
|
-
$color-popover
|
|
9
|
-
$color-
|
|
10
|
-
$color-muted
|
|
11
|
-
$color-
|
|
12
|
-
$color-accent
|
|
13
|
-
$color-
|
|
14
|
-
$color-
|
|
15
|
-
$color-
|
|
16
|
-
$color-
|
|
17
|
-
$color-
|
|
18
|
-
$color-secondary
|
|
19
|
-
$color-
|
|
20
|
-
$color-
|
|
21
|
-
$color-sidebar
|
|
2
|
+
// All variables use xw- prefix to avoid conflicts with consuming applications
|
|
3
|
+
$color-background: var(--xw-background);
|
|
4
|
+
$color-foreground: var(--xw-foreground);
|
|
5
|
+
$color-primary: var(--xw-primary);
|
|
6
|
+
$color-card: var(--xw-card);
|
|
7
|
+
$color-card-foreground: var(--xw-card-foreground);
|
|
8
|
+
$color-popover: var(--xw-popover);
|
|
9
|
+
$color-popover-foreground: var(--xw-popover-foreground);
|
|
10
|
+
$color-muted: var(--xw-muted);
|
|
11
|
+
$color-muted-foreground: var(--xw-muted-foreground);
|
|
12
|
+
$color-accent: var(--xw-accent);
|
|
13
|
+
$color-accent-foreground: var(--xw-accent-foreground);
|
|
14
|
+
$color-destructive: var(--xw-destructive);
|
|
15
|
+
$color-border: var(--xw-border);
|
|
16
|
+
$color-input: var(--xw-input);
|
|
17
|
+
$color-ring: var(--xw-ring);
|
|
18
|
+
$color-secondary: var(--xw-secondary);
|
|
19
|
+
$color-secondary-foreground: var(--xw-secondary-foreground);
|
|
20
|
+
$color-link: var(--xw-link);
|
|
21
|
+
$color-sidebar: var(--xw-sidebar);
|
|
22
|
+
$color-sidebar-foreground: var(--xw-sidebar-foreground);
|
|
22
23
|
|
|
23
24
|
// Border Radius
|
|
24
25
|
$radius-base: 0.5rem;
|
package/styles/global.scss
CHANGED
|
@@ -1,189 +1,169 @@
|
|
|
1
1
|
@use './variables' as *;
|
|
2
2
|
|
|
3
|
-
// Global styles
|
|
4
|
-
*,
|
|
5
|
-
*::before,
|
|
6
|
-
*::after {
|
|
7
|
-
box-sizing: border-box;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
* {
|
|
11
|
-
margin: 0;
|
|
12
|
-
padding: 0;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
html,
|
|
16
|
-
body {
|
|
17
|
-
height: 100%;
|
|
18
|
-
}
|
|
19
3
|
|
|
20
|
-
|
|
4
|
+
.xw-blog-root {
|
|
5
|
+
width: 100%;
|
|
6
|
+
height: 100%;
|
|
21
7
|
line-height: 1.5;
|
|
22
8
|
-webkit-font-smoothing: antialiased;
|
|
23
9
|
font-family: $font-family-sans;
|
|
24
10
|
background-color: $color-background;
|
|
25
11
|
color: $color-foreground;
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
img,
|
|
29
|
-
picture,
|
|
30
|
-
video,
|
|
31
|
-
canvas,
|
|
32
|
-
svg {
|
|
33
|
-
display: block;
|
|
34
|
-
max-width: 100%;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
input,
|
|
38
|
-
button,
|
|
39
|
-
textarea,
|
|
40
|
-
select {
|
|
41
|
-
font: inherit;
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
p,
|
|
45
|
-
h1,
|
|
46
|
-
h2,
|
|
47
|
-
h3,
|
|
48
|
-
h4,
|
|
49
|
-
h5,
|
|
50
|
-
h6 {
|
|
51
|
-
overflow-wrap: break-word;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
#root {
|
|
55
|
-
isolation: isolate;
|
|
56
|
-
height: 100%;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
// Typography
|
|
60
|
-
h1 {
|
|
61
|
-
font-size: 1.875rem;
|
|
62
|
-
font-weight: 600;
|
|
63
|
-
line-height: 1.2;
|
|
64
|
-
letter-spacing: -0.025em;
|
|
65
|
-
margin-bottom: 1.5rem;
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
h2 {
|
|
69
|
-
font-size: 1.5rem;
|
|
70
|
-
font-weight: 500;
|
|
71
|
-
line-height: 1.3;
|
|
72
|
-
letter-spacing: -0.02em;
|
|
73
|
-
margin-bottom: 1rem;
|
|
74
|
-
margin-top: 2.5rem;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
h3 {
|
|
78
|
-
font-size: 1.25rem;
|
|
79
|
-
font-weight: 500;
|
|
80
|
-
line-height: 1.4;
|
|
81
|
-
letter-spacing: -0.015em;
|
|
82
|
-
margin-bottom: 0.75rem;
|
|
83
|
-
margin-top: 2rem;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
h4 {
|
|
87
|
-
font-size: 1.125rem;
|
|
88
|
-
font-weight: 500;
|
|
89
|
-
line-height: 1.4;
|
|
90
|
-
letter-spacing: -0.01em;
|
|
91
|
-
margin-bottom: 0.5rem;
|
|
92
|
-
margin-top: 1.5rem;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
h5 {
|
|
96
|
-
font-size: 1rem;
|
|
97
|
-
font-weight: 500;
|
|
98
|
-
line-height: 1.5;
|
|
99
|
-
margin-bottom: 0.5rem;
|
|
100
|
-
margin-top: 1.25rem;
|
|
101
|
-
}
|
|
102
12
|
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
13
|
+
*,
|
|
14
|
+
*::before,
|
|
15
|
+
*::after {
|
|
16
|
+
box-sizing: border-box;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
img,
|
|
20
|
+
picture,
|
|
21
|
+
video,
|
|
22
|
+
canvas,
|
|
23
|
+
svg {
|
|
24
|
+
display: block;
|
|
25
|
+
max-width: 100%;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
p,
|
|
29
|
+
h1,
|
|
30
|
+
h2,
|
|
31
|
+
h3,
|
|
32
|
+
h4,
|
|
33
|
+
h5,
|
|
34
|
+
h6 {
|
|
35
|
+
overflow-wrap: break-word;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
// Typography - scoped to xw-blog-root
|
|
39
|
+
h1 {
|
|
40
|
+
font-size: 1.875rem;
|
|
41
|
+
font-weight: 600;
|
|
42
|
+
line-height: 1.2;
|
|
43
|
+
letter-spacing: -0.025em;
|
|
44
|
+
margin-bottom: 1.5rem;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
h2 {
|
|
48
|
+
font-size: 1.5rem;
|
|
49
|
+
font-weight: 500;
|
|
50
|
+
line-height: 1.3;
|
|
51
|
+
letter-spacing: -0.02em;
|
|
52
|
+
margin-bottom: 1rem;
|
|
53
|
+
margin-top: 2.5rem;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
h3 {
|
|
57
|
+
font-size: 1.25rem;
|
|
58
|
+
font-weight: 500;
|
|
59
|
+
line-height: 1.4;
|
|
60
|
+
letter-spacing: -0.015em;
|
|
61
|
+
margin-bottom: 0.75rem;
|
|
62
|
+
margin-top: 2rem;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
h4 {
|
|
66
|
+
font-size: 1.125rem;
|
|
67
|
+
font-weight: 500;
|
|
68
|
+
line-height: 1.4;
|
|
69
|
+
letter-spacing: -0.01em;
|
|
70
|
+
margin-bottom: 0.5rem;
|
|
71
|
+
margin-top: 1.5rem;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
h5 {
|
|
75
|
+
font-size: 1rem;
|
|
76
|
+
font-weight: 500;
|
|
77
|
+
line-height: 1.5;
|
|
78
|
+
margin-bottom: 0.5rem;
|
|
79
|
+
margin-top: 1.25rem;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
h6 {
|
|
83
|
+
font-size: 0.875rem;
|
|
84
|
+
font-weight: 500;
|
|
85
|
+
line-height: 1.5;
|
|
86
|
+
margin-bottom: 0.5rem;
|
|
87
|
+
margin-top: 1rem;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
p {
|
|
91
|
+
font-size: 1rem;
|
|
92
|
+
line-height: 1.65;
|
|
93
|
+
margin-bottom: 1rem;
|
|
94
|
+
}
|
|
134
95
|
|
|
135
96
|
code {
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
97
|
+
font-family: $font-family-mono;
|
|
98
|
+
font-size: 0.875rem;
|
|
99
|
+
background-color: $color-muted;
|
|
100
|
+
padding: 0.1875rem 0.4375rem;
|
|
101
|
+
border-radius: $radius-sm;
|
|
102
|
+
font-weight: 500;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
pre {
|
|
106
|
+
font-family: $font-family-mono;
|
|
107
|
+
background-color: $color-muted;
|
|
108
|
+
padding: 1.25rem;
|
|
109
|
+
border-radius: $radius-lg;
|
|
110
|
+
overflow-x: auto;
|
|
111
|
+
margin: 1.5rem 0;
|
|
112
|
+
border: 1px solid $color-border;
|
|
113
|
+
|
|
114
|
+
code {
|
|
115
|
+
background-color: transparent;
|
|
116
|
+
padding: 0;
|
|
117
|
+
font-weight: 400;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
// Focus styles
|
|
122
|
+
:focus-visible {
|
|
123
|
+
outline: 2px solid $color-ring;
|
|
124
|
+
outline-offset: 2px;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
// Selection styles
|
|
128
|
+
::selection {
|
|
129
|
+
background-color: $color-accent;
|
|
130
|
+
color: $color-accent-foreground;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
// Utility classes
|
|
134
|
+
.sr-only {
|
|
135
|
+
position: absolute !important;
|
|
136
|
+
width: 1px !important;
|
|
137
|
+
height: 1px !important;
|
|
138
|
+
padding: 0 !important;
|
|
139
|
+
margin: -1px !important;
|
|
140
|
+
overflow: hidden !important;
|
|
141
|
+
clip: rect(0, 0, 0, 0) !important;
|
|
142
|
+
white-space: nowrap !important;
|
|
143
|
+
border: 0 !important;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.text-muted {
|
|
147
|
+
color: $color-muted-foreground;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.text-destructive {
|
|
151
|
+
color: $color-destructive;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.bg-muted {
|
|
155
|
+
background-color: $color-muted;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.border {
|
|
159
|
+
border: 1px solid $color-border;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.rounded {
|
|
163
|
+
border-radius: $radius-md;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.shadow {
|
|
167
|
+
box-shadow: $shadow-md;
|
|
168
|
+
}
|
|
189
169
|
}
|
package/styles/main.scss
CHANGED
|
@@ -1,92 +1,77 @@
|
|
|
1
1
|
/*
|
|
2
|
-
Main styles entry point - imports all required stylesheets
|
|
3
|
-
*/
|
|
2
|
+
Main styles entry point - imports all required stylesheets*/
|
|
4
3
|
@use './global.scss';
|
|
5
4
|
|
|
6
5
|
:root {
|
|
7
|
-
--radius: 0.625rem;
|
|
8
|
-
--background: oklch(1 0 0);
|
|
9
|
-
--foreground: oklch(0.145 0 0);
|
|
10
|
-
--card: oklch(1 0 0);
|
|
11
|
-
--card-foreground: oklch(0.145 0 0);
|
|
12
|
-
--popover: oklch(1 0 0);
|
|
13
|
-
--popover-foreground: oklch(0.145 0 0);
|
|
14
|
-
--primary: oklch(0.205 0 0);
|
|
15
|
-
--primary-foreground: oklch(0.985 0 0);
|
|
16
|
-
--secondary: oklch(0.97 0 0);
|
|
17
|
-
--secondary-foreground: oklch(0.205 0 0);
|
|
18
|
-
--muted: oklch(0.97 0 0);
|
|
19
|
-
--muted-foreground: oklch(0.556 0 0);
|
|
20
|
-
--accent: oklch(0.97 0 0);
|
|
21
|
-
--accent-foreground: oklch(0.205 0 0);
|
|
22
|
-
--destructive: oklch(0.577 0.245 27.325);
|
|
23
|
-
--border: oklch(0.922 0 0);
|
|
24
|
-
--input: oklch(0.922 0 0);
|
|
25
|
-
--ring: oklch(0.708 0 0);
|
|
26
|
-
--link: rgb(211, 48, 121);
|
|
27
|
-
--chart-1: oklch(0.646 0.222 41.116);
|
|
28
|
-
--chart-2: oklch(0.6 0.118 184.704);
|
|
29
|
-
--chart-3: oklch(0.398 0.07 227.392);
|
|
30
|
-
--chart-4: oklch(0.828 0.189 84.429);
|
|
31
|
-
--chart-5: oklch(0.769 0.188 70.08);
|
|
32
|
-
--sidebar: oklch(0.97 0 0);
|
|
33
|
-
--sidebar-foreground: oklch(0.145 0 0);
|
|
34
|
-
--sidebar-primary: oklch(0.205 0 0);
|
|
35
|
-
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
36
|
-
--sidebar-accent: oklch(0.97 0 0);
|
|
37
|
-
--sidebar-accent-foreground: oklch(0.205 0 0);
|
|
38
|
-
--sidebar-border: oklch(0.922 0 0);
|
|
39
|
-
--sidebar-ring: oklch(0.708 0 0);
|
|
6
|
+
--xw-radius: 0.625rem;
|
|
7
|
+
--xw-background: oklch(1 0 0);
|
|
8
|
+
--xw-foreground: oklch(0.145 0 0);
|
|
9
|
+
--xw-card: oklch(1 0 0);
|
|
10
|
+
--xw-card-foreground: oklch(0.145 0 0);
|
|
11
|
+
--xw-popover: oklch(1 0 0);
|
|
12
|
+
--xw-popover-foreground: oklch(0.145 0 0);
|
|
13
|
+
--xw-primary: oklch(0.205 0 0);
|
|
14
|
+
--xw-primary-foreground: oklch(0.985 0 0);
|
|
15
|
+
--xw-secondary: oklch(0.97 0 0);
|
|
16
|
+
--xw-secondary-foreground: oklch(0.205 0 0);
|
|
17
|
+
--xw-muted: oklch(0.97 0 0);
|
|
18
|
+
--xw-muted-foreground: oklch(0.556 0 0);
|
|
19
|
+
--xw-accent: oklch(0.97 0 0);
|
|
20
|
+
--xw-accent-foreground: oklch(0.205 0 0);
|
|
21
|
+
--xw-destructive: oklch(0.577 0.245 27.325);
|
|
22
|
+
--xw-border: oklch(0.922 0 0);
|
|
23
|
+
--xw-input: oklch(0.922 0 0);
|
|
24
|
+
--xw-ring: oklch(0.708 0 0);
|
|
25
|
+
--xw-link: rgb(211, 48, 121);
|
|
26
|
+
--xw-chart-1: oklch(0.646 0.222 41.116);
|
|
27
|
+
--xw-chart-2: oklch(0.6 0.118 184.704);
|
|
28
|
+
--xw-chart-3: oklch(0.398 0.07 227.392);
|
|
29
|
+
--xw-chart-4: oklch(0.828 0.189 84.429);
|
|
30
|
+
--xw-chart-5: oklch(0.769 0.188 70.08);
|
|
31
|
+
--xw-sidebar: oklch(0.97 0 0);
|
|
32
|
+
--xw-sidebar-foreground: oklch(0.145 0 0);
|
|
33
|
+
--xw-sidebar-primary: oklch(0.205 0 0);
|
|
34
|
+
--xw-sidebar-primary-foreground: oklch(0.985 0 0);
|
|
35
|
+
--xw-sidebar-accent: oklch(0.97 0 0);
|
|
36
|
+
--xw-sidebar-accent-foreground: oklch(0.205 0 0);
|
|
37
|
+
--xw-sidebar-border: oklch(0.922 0 0);
|
|
38
|
+
--xw-sidebar-ring: oklch(0.708 0 0);
|
|
40
39
|
}
|
|
41
40
|
|
|
42
41
|
/*
|
|
43
|
-
|
|
42
|
+
Dark mode
|
|
44
43
|
*/
|
|
45
44
|
.dark {
|
|
46
|
-
--background: oklch(0.145 0 0);
|
|
47
|
-
--foreground: oklch(0.985 0 0);
|
|
48
|
-
--card: oklch(0.205 0 0);
|
|
49
|
-
--card-foreground: oklch(0.985 0 0);
|
|
50
|
-
--popover: oklch(0.205 0 0);
|
|
51
|
-
--popover-foreground: oklch(0.985 0 0);
|
|
52
|
-
--primary: oklch(0.922 0 0);
|
|
53
|
-
--primary-foreground: oklch(0.205 0 0);
|
|
54
|
-
--secondary: oklch(0.269 0 0);
|
|
55
|
-
--secondary-foreground: oklch(0.985 0 0);
|
|
56
|
-
--muted: oklch(0.269 0 0);
|
|
57
|
-
--muted-foreground: oklch(0.708 0 0);
|
|
58
|
-
--accent: oklch(0.269 0 0);
|
|
59
|
-
--accent-foreground: oklch(0.985 0 0);
|
|
60
|
-
--destructive: oklch(0.704 0.191 22.216);
|
|
61
|
-
--border: oklch(1 0 0 / 10%);
|
|
62
|
-
--input: oklch(1 0 0 / 15%);
|
|
63
|
-
--ring: oklch(0.556 0 0);
|
|
64
|
-
--link: rgb(211, 48, 121);
|
|
65
|
-
--chart-1: oklch(0.488 0.243 264.376);
|
|
66
|
-
--chart-2: oklch(0.696 0.17 162.48);
|
|
67
|
-
--chart-3: oklch(0.769 0.188 70.08);
|
|
68
|
-
--chart-4: oklch(0.627 0.265 303.9);
|
|
69
|
-
--chart-5: oklch(0.645 0.246 16.439);
|
|
70
|
-
--sidebar: oklch(0.205 0 0);
|
|
71
|
-
--sidebar-foreground: oklch(0.985 0 0);
|
|
72
|
-
--sidebar-primary: oklch(0.488 0.243 264.376);
|
|
73
|
-
--sidebar-primary-foreground: oklch(0.985 0 0);
|
|
74
|
-
--sidebar-accent: oklch(0.269 0 0);
|
|
75
|
-
--sidebar-accent-foreground: oklch(0.985 0 0);
|
|
76
|
-
--sidebar-border: oklch(1 0 0 / 10%);
|
|
77
|
-
--sidebar-ring: oklch(0.556 0 0);
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
/* Basic reset and body styles */
|
|
81
|
-
* {
|
|
82
|
-
box-sizing: border-box;
|
|
83
|
-
margin: 0;
|
|
84
|
-
padding: 0;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
body {
|
|
88
|
-
background-color: var(--background);
|
|
89
|
-
color: var(--foreground);
|
|
90
|
-
font-family: Inter, sans-serif;
|
|
91
|
-
line-height: 1.6;
|
|
45
|
+
--xw-background: oklch(0.145 0 0);
|
|
46
|
+
--xw-foreground: oklch(0.985 0 0);
|
|
47
|
+
--xw-card: oklch(0.205 0 0);
|
|
48
|
+
--xw-card-foreground: oklch(0.985 0 0);
|
|
49
|
+
--xw-popover: oklch(0.205 0 0);
|
|
50
|
+
--xw-popover-foreground: oklch(0.985 0 0);
|
|
51
|
+
--xw-primary: oklch(0.922 0 0);
|
|
52
|
+
--xw-primary-foreground: oklch(0.205 0 0);
|
|
53
|
+
--xw-secondary: oklch(0.269 0 0);
|
|
54
|
+
--xw-secondary-foreground: oklch(0.985 0 0);
|
|
55
|
+
--xw-muted: oklch(0.269 0 0);
|
|
56
|
+
--xw-muted-foreground: oklch(0.708 0 0);
|
|
57
|
+
--xw-accent: oklch(0.269 0 0);
|
|
58
|
+
--xw-accent-foreground: oklch(0.985 0 0);
|
|
59
|
+
--xw-destructive: oklch(0.704 0.191 22.216);
|
|
60
|
+
--xw-border: oklch(1 0 0 / 10%);
|
|
61
|
+
--xw-input: oklch(1 0 0 / 15%);
|
|
62
|
+
--xw-ring: oklch(0.556 0 0);
|
|
63
|
+
--xw-link: rgb(211, 48, 121);
|
|
64
|
+
--xw-chart-1: oklch(0.488 0.243 264.376);
|
|
65
|
+
--xw-chart-2: oklch(0.696 0.17 162.48);
|
|
66
|
+
--xw-chart-3: oklch(0.769 0.188 70.08);
|
|
67
|
+
--xw-chart-4: oklch(0.627 0.265 303.9);
|
|
68
|
+
--xw-chart-5: oklch(0.645 0.246 16.439);
|
|
69
|
+
--xw-sidebar: oklch(0.205 0 0);
|
|
70
|
+
--xw-sidebar-foreground: oklch(0.985 0 0);
|
|
71
|
+
--xw-sidebar-primary: oklch(0.488 0.243 264.376);
|
|
72
|
+
--xw-sidebar-primary-foreground: oklch(0.985 0 0);
|
|
73
|
+
--xw-sidebar-accent: oklch(0.269 0 0);
|
|
74
|
+
--xw-sidebar-accent-foreground: oklch(0.985 0 0);
|
|
75
|
+
--xw-sidebar-border: oklch(1 0 0 / 10%);
|
|
76
|
+
--xw-sidebar-ring: oklch(0.556 0 0);
|
|
92
77
|
}
|
package/index.css
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
._tabContainer_yggpc_1{display:inline-flex;background-color:var(--card);border:1px solid var(--border);border-radius:.5rem;margin-bottom:2rem;overflow:hidden}._tab_yggpc_1{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._tab_yggpc_1:focus-visible{outline:2px solid var(--ring);outline-offset:2px}._tab_yggpc_1:disabled{pointer-events:none;opacity:.5}._tab_yggpc_1{padding:.5rem 1rem;font-size:.87rem;font-weight:500;background-color:transparent;border:none;border-radius:0;color:var(--muted-foreground);cursor:pointer;white-space:nowrap}._tab_yggpc_1:not(:last-child){border-right:1px solid var(--border)}._tab_yggpc_1._active_yggpc_45{background-color:var(--accent);color:var(--accent-foreground)}._tab_yggpc_1:hover:not(._active_yggpc_45){background-color:var(--muted);color:var(--foreground)}._tab_yggpc_1:focus-visible{outline:2px solid var(--accent);outline-offset:-2px}._tableOfContents_vn5e4_1{position:sticky;top:5rem;align-self:flex-start;height:fit-content;max-height:calc(100vh - 8rem);overflow-y:auto;padding:2rem 0 2rem 1.5rem;margin-left:2rem;background:transparent;border-left:1px solid var(--border);flex-shrink:0}@media(max-width:1024px){._tableOfContents_vn5e4_1{display:none}}._header_vn5e4_20{margin-bottom:1rem}._title_vn5e4_24{font-size:.75rem;font-weight:500;color:var(--muted-foreground);text-transform:uppercase;letter-spacing:.05em;margin-bottom:.5rem}._nav_vn5e4_33 ul{margin:0;padding:0;list-style:none}._list_vn5e4_39{display:flex;flex-direction:column;gap:.125rem;margin:0}._link_vn5e4_46{display:block;width:100%;padding:.25rem 0;text-align:left;background:none;border:none;cursor:pointer;font-size:.875rem;line-height:1.4;color:var(--muted-foreground);text-decoration:none;border-radius:.25rem;transition:all .15s cubic-bezier(.4,0,.2,1);position:relative;font-family:inherit}._link_vn5e4_46:hover{color:var(--foreground)}._link_vn5e4_46:focus{outline:none;color:var(--foreground)}._link_vn5e4_46._active_vn5e4_70{color:var(--primary);font-weight:500}._link_vn5e4_46._active_vn5e4_70:before{content:"";position:absolute;left:-1.5rem;top:50%;transform:translateY(-50%);width:1px;height:1rem;background-color:var(--primary);border-radius:.5px}._level1_vn5e4_86{font-weight:500;padding-left:0;margin-bottom:.125rem}._level2_vn5e4_92{padding-left:.5rem;margin-bottom:.0625rem}._level3_vn5e4_97{padding-left:1rem;font-size:.8125rem;margin-bottom:.0625rem}._level4_vn5e4_103{padding-left:1.5rem;font-size:.8125rem;margin-bottom:.0625rem}._level5_vn5e4_109{padding-left:2rem;font-size:.75rem;margin-bottom:.0625rem}._level6_vn5e4_115{padding-left:2.5rem;font-size:.75rem;margin-bottom:.0625rem}._tableOfContents_vn5e4_1::-webkit-scrollbar{width:4px}._tableOfContents_vn5e4_1::-webkit-scrollbar-track{background:transparent}._tableOfContents_vn5e4_1::-webkit-scrollbar-thumb{background:var(--border);border-radius:2px}._tableOfContents_vn5e4_1::-webkit-scrollbar-thumb:hover{background:var(--muted-foreground)}._overlay_s7p1r_1{position:fixed;top:0;left:0;right:0;bottom:0;background:#00000080;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:2000;display:flex;align-items:flex-start;justify-content:center;padding-top:10vh;animation:_fadeIn_s7p1r_1 .2s ease;height:100vh}@keyframes _fadeIn_s7p1r_1{0%{opacity:0}to{opacity:1}}._modal_s7p1r_26{width:90%;max-width:600px;background:var(--card);border:1px solid var(--border);border-radius:.75rem;box-shadow:0 20px 60px #0000004d;animation:_slideIn_s7p1r_1 .2s ease;max-height:80vh;display:flex;flex-direction:column;overflow:hidden}@keyframes _slideIn_s7p1r_1{0%{transform:translateY(-20px);opacity:0}to{transform:translateY(0);opacity:1}}._header_s7p1r_50{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;border-bottom:1px solid var(--border)}._title_s7p1r_58{font-size:1.125rem;font-weight:600;color:var(--foreground);margin:0}._closeButton_s7p1r_65{background:none;border:none;color:var(--muted-foreground);cursor:pointer;padding:.25rem;display:flex;align-items:center;justify-content:center;border-radius:.25rem;transition:all .2s ease}._closeButton_s7p1r_65 svg{width:1.25rem;height:1.25rem}._closeButton_s7p1r_65:hover{background:var(--secondary);color:var(--foreground)}._results_s7p1r_86{flex:1;overflow-y:auto;padding:.5rem;min-height:200px;max-height:400px}._resultsList_s7p1r_94{list-style:none;padding:0;margin:0}._resultItem_s7p1r_100{display:flex;flex-direction:column;align-items:flex-start;gap:.25rem;width:100%;padding:.75rem 1rem;background:none;border:none;border-radius:.5rem;cursor:pointer;text-align:left;transition:all .15s ease;color:var(--foreground)}._resultItem_s7p1r_100:hover{background:var(--secondary)}._resultTitle_s7p1r_119{font-weight:500;font-size:.95rem}._resultSlug_s7p1r_124{font-size:.8rem;color:var(--muted-foreground);opacity:.8}._noResults_s7p1r_130{padding:3rem 1rem;text-align:center;color:var(--muted-foreground);font-size:.9rem}._tags_8uc6s_1{display:flex;align-items:center;gap:.75rem;margin:2rem 0 1rem;padding:1rem 0 0;border-top:1px solid var(--border)}._tags_8uc6s_1._compact_8uc6s_9{margin:2rem 0 1rem;padding:1rem 0 0;border-top:1px solid var(--border)}._tagLabel_8uc6s_15{display:flex;align-items:center;gap:.5rem;color:var(--muted-foreground);font-size:.875rem;font-weight:500;white-space:nowrap}._tagIcon_8uc6s_25{width:1.125rem;height:1.125rem}._tagList_8uc6s_30{display:flex;flex-wrap:wrap;gap:.5rem}._tag_8uc6s_1{display:inline-flex;align-items:center;padding:.25rem .75rem;background:none;border:1px solid var(--border);border-radius:.75rem;color:var(--muted-foreground);font-size:.8rem;font-weight:400;cursor:pointer;transition:all .2s ease}._tag_8uc6s_1:hover{color:var(--foreground);border-color:var(--ring)}._contentPage_godc9_1{flex:1;max-width:48rem;margin:0;padding:0 0 2rem}@media(max-width:767px){._contentPage_godc9_1{padding:1.5rem;max-width:none}}@media(max-width:1024px){._contentPage_godc9_1{max-width:none;padding:2rem}}._metadata_godc9_20{display:flex;gap:1rem;align-items:center;padding:.5rem 0 1rem;color:var(--muted-foreground);font-size:.875rem;border-bottom:1px solid var(--border);margin-bottom:1rem}._metadata_godc9_20 ._author_godc9_30,._metadata_godc9_20 ._date_godc9_31{display:flex;align-items:center;gap:.5rem}._metadata_godc9_20 ._author_godc9_30{font-weight:500;color:var(--foreground)}@media(max-width:767px){._metadata_godc9_20{flex-direction:column;align-items:flex-start;gap:.25rem}}._loadingContainer_godc9_48,._errorContainer_godc9_49{display:flex;align-items:center;justify-content:center;height:16rem}._loadingContainer_godc9_48{flex-direction:column;align-items:flex-start;gap:1.5rem;padding:2rem 0}@keyframes _shimmer_godc9_1{0%{background-position:-1000px 0}to{background-position:1000px 0}}._skeletonTitle_godc9_71{width:60%;height:2.5rem;background:linear-gradient(90deg,var(--muted) 0%,color-mix(in oklch,var(--muted) 50%,white) 50%,var(--muted) 100%);background-size:1000px 100%;animation:_shimmer_godc9_1 2s infinite linear;border-radius:.5rem}._skeletonParagraph_godc9_80{width:100%;height:1rem;background:linear-gradient(90deg,var(--muted) 0%,color-mix(in oklch,var(--muted) 50%,white) 50%,var(--muted) 100%);background-size:1000px 100%;animation:_shimmer_godc9_1 2s infinite linear;border-radius:.25rem;margin-bottom:.5rem}._skeletonParagraph_godc9_80:not(:last-child){margin-bottom:1rem}._skeletonParagraphShort_godc9_93{width:70%;height:1rem;background:linear-gradient(90deg,var(--muted) 0%,color-mix(in oklch,var(--muted) 50%,white) 50%,var(--muted) 100%);background-size:1000px 100%;animation:_shimmer_godc9_1 2s infinite linear;border-radius:.25rem}._loadingText_godc9_102{color:var(--muted-foreground);font-size:1rem}._errorText_godc9_107{color:var(--destructive);font-size:1rem}._mdxContent_godc9_112{max-width:none}._mdxContent_godc9_112 h1{font-size:1.875rem;font-weight:600;letter-spacing:-.025em;margin-bottom:1.5rem;border-bottom:1px solid var(--border);padding-bottom:.75rem;line-height:1.2;scroll-margin-top:5rem}._mdxContent_godc9_112 h1._withMetadata_godc9_125{border-bottom:none;padding-bottom:0;margin-bottom:.5rem}._mdxContent_godc9_112 h1 a{color:inherit;text-decoration:none;border:none;position:relative}._mdxContent_godc9_112 h1 a:hover{color:inherit;border:none}._mdxContent_godc9_112 h1 a:hover:before{content:"#";position:absolute;left:-1.5rem;color:var(--link);opacity:.7;font-weight:400}._mdxContent_godc9_112 h2{font-size:1.5rem;font-weight:500;letter-spacing:-.02em;margin-bottom:1rem;margin-top:2.5rem;border-bottom:1px solid var(--border);padding-bottom:.5rem;line-height:1.3;scroll-margin-top:5rem}._mdxContent_godc9_112 h2 a{color:inherit;text-decoration:none;border:none;position:relative}._mdxContent_godc9_112 h2 a:hover{color:inherit;border:none}._mdxContent_godc9_112 h2 a:hover:before{content:"#";position:absolute;left:-1.5rem;color:var(--link);opacity:.7;font-weight:400}._mdxContent_godc9_112 h3{font-size:1.25rem;font-weight:500;letter-spacing:-.015em;margin-bottom:.75rem;margin-top:2rem;line-height:1.4;scroll-margin-top:5rem}._mdxContent_godc9_112 h3 a{color:inherit;text-decoration:none;border:none;position:relative}._mdxContent_godc9_112 h3 a:hover{color:inherit;border:none}._mdxContent_godc9_112 h3 a:hover:before{content:"#";position:absolute;left:-1.5rem;color:var(--link);opacity:.7;font-weight:400}._mdxContent_godc9_112 h4{font-size:1.125rem;font-weight:500;letter-spacing:-.01em;margin-bottom:.5rem;margin-top:1.5rem;line-height:1.4;scroll-margin-top:5rem}._mdxContent_godc9_112 h4 a{color:inherit;text-decoration:none;border:none;position:relative}._mdxContent_godc9_112 h4 a:hover{color:inherit;border:none}._mdxContent_godc9_112 h4 a:hover:before{content:"#";position:absolute;left:-1.5rem;color:var(--link);opacity:.7;font-weight:400}._mdxContent_godc9_112 h5{font-size:1rem;font-weight:500;margin-bottom:.5rem;margin-top:1.25rem;line-height:1.5}._mdxContent_godc9_112 h6{font-size:.875rem;font-weight:500;margin-bottom:.5rem;margin-top:1rem;line-height:1.5}._mdxContent_godc9_112 p{font-size:1rem;line-height:1.65;margin-bottom:1rem;color:var(--foreground)}._mdxContent_godc9_112 ul,._mdxContent_godc9_112 ol{margin-bottom:1rem;padding-left:1.5rem}._mdxContent_godc9_112 ul li,._mdxContent_godc9_112 ol li{font-size:1rem;line-height:1.65;margin-bottom:.375rem}._mdxContent_godc9_112 ul ul,._mdxContent_godc9_112 ul ol,._mdxContent_godc9_112 ol ul,._mdxContent_godc9_112 ol ol{margin-top:.375rem;margin-bottom:.375rem}._mdxContent_godc9_112 ul{list-style-type:disc}._mdxContent_godc9_112 ol{list-style-type:decimal}._mdxContent_godc9_112 code{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;font-size:.875rem;background-color:var(--muted);padding:.1875rem .4375rem;border-radius:.25rem;color:var(--foreground);font-weight:500}._mdxContent_godc9_112 pre{font-family:ui-monospace,SFMono-Regular,Consolas,Liberation Mono,Menlo,monospace;background-color:var(--muted);padding:1.25rem;border-radius:.75rem;overflow-x:auto;margin:1.5rem 0;position:relative;border:1px solid var(--border)}._mdxContent_godc9_112 pre code{background-color:transparent;padding:0;color:inherit;font-weight:400}._mdxContent_godc9_112 ._codeBlock_godc9_300{position:relative;margin-bottom:1.5rem}._mdxContent_godc9_112 ._codeLanguage_godc9_304{position:absolute;top:.5rem;right:.5rem;font-size:.75rem;color:var(--muted-foreground);background-color:var(--background);padding:.25rem .5rem;border-radius:.25rem;border:1px solid var(--border)}._mdxContent_godc9_112 blockquote{border-left:3px solid var(--accent);padding-left:1rem;font-style:italic;color:var(--muted-foreground);margin-bottom:1rem;margin-top:1rem}._mdxContent_godc9_112 blockquote p{margin-bottom:.5rem}._mdxContent_godc9_112 blockquote p:last-child{margin-bottom:0}._mdxContent_godc9_112 a{color:var(--link);text-decoration:none;transition:color .15s cubic-bezier(.4,0,.2,1);border-bottom:1px solid transparent}._mdxContent_godc9_112 a:hover{color:color-mix(in oklch,var(--link) 80%,transparent);border-bottom-color:currentColor}._mdxContent_godc9_112 strong{font-weight:600}._mdxContent_godc9_112 em{font-style:italic}._mdxContent_godc9_112 table{width:100%;border-collapse:collapse;margin:1.5rem 0;font-size:.95rem}._mdxContent_godc9_112 table th,._mdxContent_godc9_112 table td{padding:.75rem 1rem;text-align:left;border-bottom:1px solid var(--border);line-height:1.4}._mdxContent_godc9_112 table th{font-weight:500;background-color:var(--muted);font-size:.875rem;letter-spacing:.025em}._mdxContent_godc9_112 table tbody tr:hover{background-color:color-mix(in oklch,var(--muted) 50%,transparent)}._mdxContent_godc9_112 img{max-width:100%;height:auto;border-radius:.5rem;margin:1.5rem 0;border:1px solid var(--border)}._mdxContent_godc9_112 hr{border:none;border-top:1px solid var(--border);margin:2rem 0}._searchButton_royne_1{display:flex;align-items:center;gap:.5rem;padding:.5rem .75rem;border-radius:.375rem;background:none;border:none;color:var(--muted-foreground);cursor:pointer;transition:all .2s ease;font-size:.875rem}._searchButton_royne_1:hover{border-color:var(--input)}._searchButton_royne_1 ._searchIcon_royne_17{width:1rem;height:1rem;opacity:.6}@media(max-width:768px){._searchButton_royne_1 ._searchHint_royne_23{display:none}}._searchButton_royne_1 ._kbd_royne_27{display:none;padding:.125rem .375rem;background:var(--card);border:1px solid var(--border);border-radius:.25rem;font-size:.75rem;font-family:monospace}@media(min-width:768px){._searchButton_royne_1 ._kbd_royne_27{display:block}}._searchOverlay_royne_42{position:fixed;top:0;left:0;right:0;bottom:0;background:#00000080;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:2000;display:flex;align-items:flex-start;justify-content:center;padding-top:10vh;animation:_fadeIn_royne_1 .2s ease;height:100vh}@keyframes _fadeIn_royne_1{0%{opacity:0}to{opacity:1}}._searchModal_royne_67{width:90%;max-width:600px;background:var(--card);border:1px solid var(--border);border-radius:.75rem;box-shadow:0 20px 60px #0000004d;animation:_slideIn_royne_1 .2s ease;max-height:80vh;display:flex;flex-direction:column;overflow:hidden}@keyframes _slideIn_royne_1{0%{transform:translateY(-20px);opacity:0}to{transform:translateY(0);opacity:1}}._searchHeader_royne_91{display:flex;align-items:center;gap:.75rem;padding:1rem 1.25rem;border-bottom:1px solid var(--border)}._searchHeader_royne_91 ._searchIcon_royne_17{width:1.25rem;height:1.25rem;opacity:.5;flex-shrink:0}._searchInput_royne_105{flex:1;border:none;background:transparent;color:var(--foreground);font-size:1rem;outline:none}._searchInput_royne_105:focus{border:none;outline:none;box-shadow:none}._searchInput_royne_105::placeholder{color:var(--muted-foreground);opacity:.6}._closeButton_royne_123{background:none;border:none;color:var(--muted-foreground);cursor:pointer;padding:.25rem;display:flex;align-items:center;justify-content:center;border-radius:.25rem;transition:all .2s ease}._closeButton_royne_123 svg{width:1.25rem;height:1.25rem}._closeButton_royne_123:hover{background:var(--secondary);color:var(--foreground)}._searchResults_royne_144{flex:1;overflow-y:auto;padding:.5rem;min-height:200px;max-height:400px}._resultsList_royne_152{list-style:none;padding:0;margin:0}._resultItem_royne_158{display:flex;flex-direction:column;align-items:flex-start;gap:.25rem;width:100%;padding:.75rem 1rem;background:none;border:none;border-radius:.5rem;cursor:pointer;text-align:left;transition:all .15s ease;color:var(--foreground)}._resultItem_royne_158:hover,._resultItem_royne_158._selected_royne_173{background:var(--secondary)}._resultItem_royne_158 ._resultTitle_royne_176{font-weight:500;font-size:.95rem}._resultItem_royne_158 ._resultSlug_royne_180{font-size:.8rem;color:var(--muted-foreground);opacity:.8}._noResults_royne_186{padding:3rem 1rem;text-align:center;color:var(--muted-foreground);font-size:.9rem}._searchHints_royne_193{display:flex;align-items:center;gap:1.5rem;padding:.75rem 1.25rem;border-top:1px solid var(--border);background:var(--secondary);font-size:.8rem;color:var(--muted-foreground)}@media(max-width:768px){._searchHints_royne_193{flex-direction:column;align-items:flex-start;gap:.5rem}}._searchHints_royne_193 ._hint_royne_210{display:flex;align-items:center;gap:.5rem}._searchHints_royne_193 ._hint_royne_210 kbd{padding:.125rem .375rem;background:var(--card);border:1px solid var(--border);border-radius:.25rem;font-size:.75rem;font-family:monospace;min-width:1.5rem;text-align:center}._header_15xr7_1{position:sticky;top:0;z-index:1020;background-color:#fffc;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);height:3.5rem;padding-left:16rem}.dark ._header_15xr7_1{background-color:#2020201a}@supports not (backdrop-filter: blur(12px)){._header_15xr7_1{background-color:var(--background)}}@media(max-width:767px){._header_15xr7_1{padding:0}}._container_15xr7_24{width:100%;max-width:1400px;margin:0 auto;padding:0 1.5rem}@media(max-width:767px){._container_15xr7_24{padding:0 1rem}}._content_15xr7_36{display:flex;align-items:center;justify-content:space-between;height:3.5rem}._leftSection_15xr7_43{display:flex;align-items:center;gap:1rem}._mobileMenuButton_15xr7_49{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._mobileMenuButton_15xr7_49:focus-visible{outline:2px solid var(--ring);outline-offset:2px}._mobileMenuButton_15xr7_49:disabled{pointer-events:none;opacity:.5}._mobileMenuButton_15xr7_49{padding:.5rem;background-color:transparent;color:var(--muted-foreground);border-radius:.5rem;display:none}._mobileMenuButton_15xr7_49:hover{background-color:var(--muted);color:var(--foreground)}@media(max-width:767px){._mobileMenuButton_15xr7_49{display:flex}}._burgerIcon_15xr7_87{width:1.25rem;height:1.25rem}._logo_15xr7_92,._nav_15xr7_98{display:flex;align-items:center;gap:.5rem}@media(max-width:767px){._nav_15xr7_98{gap:.25rem}}._navLink_15xr7_109{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;border-radius:.5rem;font-size:.875rem;font-weight:500;color:var(--muted-foreground);text-decoration:none;transition:all .15s cubic-bezier(.4,0,.2,1)}._navLink_15xr7_109:hover{color:var(--foreground)}._navLink_15xr7_109:focus{outline:none}._githubIcon_15xr7_128{width:1rem;height:1rem;flex-shrink:0;transition:transform .15s cubic-bezier(.4,0,.2,1)}._externalIcon_15xr7_135{width:1rem;height:1rem;flex-shrink:0}._supportDropdown_15xr7_141,._themeDropdown_15xr7_145{position:relative}._themeButton_15xr7_149{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem;border-radius:.5rem;font-size:.875rem;font-weight:500;color:var(--muted-foreground);background:none;border:none;cursor:pointer;transition:all .15s cubic-bezier(.4,0,.2,1)}._themeButton_15xr7_149:hover{color:var(--foreground);background-color:var(--muted)}._themeButton_15xr7_149:focus{outline:none}._themeIcon_15xr7_171{width:1.125rem;height:1.125rem;flex-shrink:0}._supportButton_15xr7_177{display:inline-flex;align-items:center;gap:.5rem;padding:.5rem 1rem;border-radius:.5rem;font-size:.875rem;font-weight:500;color:var(--muted-foreground);background:none;border:none;cursor:pointer;transition:all .15s cubic-bezier(.4,0,.2,1)}._supportButton_15xr7_177:hover{color:var(--foreground)}._supportButton_15xr7_177:focus{outline:none}._caretIcon_15xr7_198{width:.875rem;height:.875rem;flex-shrink:0;transition:transform .15s cubic-bezier(.4,0,.2,1)}button[aria-expanded=true] ._caretIcon_15xr7_198{transform:rotate(180deg)}._dropdownMenu_15xr7_208{position:absolute;top:calc(100% + .25rem);right:0;min-width:10rem;background-color:var(--popover);border:1px solid var(--border);border-radius:.5rem;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;z-index:1000;overflow:hidden}._dropdownItem_15xr7_221{display:flex;align-items:center;gap:.5rem;width:100%;padding:.5rem 1rem;font-size:.875rem;color:var(--popover-foreground);text-decoration:none;background:none;border:none;cursor:pointer;text-align:left;transition:background-color .15s cubic-bezier(.4,0,.2,1)}._dropdownItem_15xr7_221:hover{background-color:var(--muted)}._dropdownItem_15xr7_221:focus{outline:none;background-color:var(--muted)}._dropdownIcon_15xr7_244{width:1rem;height:1rem;flex-shrink:0}@media(max-width:767px){._logoText_15xr7_251{font-size:1rem}._navLink_15xr7_109{padding:.25rem .5rem;font-size:.8rem;gap:.25rem}._githubIcon_15xr7_128{width:.875rem;height:.875rem}}._backdrop_17kcj_1{position:fixed;top:0;left:0;right:0;bottom:0;background-color:#00000080;z-index:1040;opacity:0;visibility:hidden;transition:all .15s cubic-bezier(.4,0,.2,1)}._backdrop_17kcj_1._open_17kcj_13{opacity:1;visibility:visible}._mobileMenu_17kcj_18{position:fixed;top:0;left:0;width:320px;height:100vh;background-color:var(--background);border-right:1px solid var(--border);z-index:1050;transform:translate(-100%);transition:transform .15s cubic-bezier(.4,0,.2,1);display:flex;flex-direction:column;overflow:hidden}._mobileMenu_17kcj_18._open_17kcj_13{transform:translate(0)}._header_17kcj_37{display:flex;align-items:center;justify-content:space-between;padding:1.5rem;border-bottom:1px solid var(--border);flex-shrink:0}._brand_17kcj_46{flex:1;display:flex;align-items:center;gap:.5rem}._cloudIcon_17kcj_53{width:1.5rem;height:1.5rem;flex-shrink:0}._cloudIcon_17kcj_53 .accent{fill:#d33079}._title_17kcj_62{font-size:1.125rem;font-weight:600;color:var(--foreground);margin:0}._closeButton_17kcj_69{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._closeButton_17kcj_69:focus-visible{outline:2px solid var(--ring);outline-offset:2px}._closeButton_17kcj_69:disabled{pointer-events:none;opacity:.5}._closeButton_17kcj_69{padding:.5rem;background-color:transparent;color:var(--muted-foreground);border-radius:.5rem}._closeButton_17kcj_69:hover{background-color:var(--muted);color:var(--foreground)}._closeIcon_17kcj_101{width:1.25rem;height:1.25rem}._languageSection_17kcj_106{padding:1.5rem;border-bottom:1px solid var(--border);flex-shrink:0}._languageSelect_17kcj_112{position:relative;width:100%}._languageButton_17kcj_117{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._languageButton_17kcj_117:focus-visible{outline:2px solid var(--ring);outline-offset:2px}._languageButton_17kcj_117:disabled{pointer-events:none;opacity:.5}._languageButton_17kcj_117{display:flex;align-items:center;justify-content:space-between;width:100%;padding:.5rem 1rem;background-color:var(--background);border:1px solid var(--border);color:var(--foreground);gap:.5rem}._languageButton_17kcj_117:hover,._languageButton_17kcj_117[aria-expanded=true]{background-color:var(--muted)}._icon_17kcj_156{width:1rem;height:1rem;flex-shrink:0}._chevron_17kcj_162{width:1rem;height:1rem;transition:transform .15s cubic-bezier(.4,0,.2,1);margin-left:auto}._languageButton_17kcj_117[aria-expanded=true] ._chevron_17kcj_162{transform:rotate(180deg)}._languageDropdown_17kcj_172{position:absolute;top:100%;left:0;right:0;background-color:var(--popover);border:1px solid var(--border);border-radius:.5rem;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;z-index:1000;margin-top:.25rem}._languageOption_17kcj_185{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._languageOption_17kcj_185:focus-visible{outline:2px solid var(--ring);outline-offset:2px}._languageOption_17kcj_185:disabled{pointer-events:none;opacity:.5}._languageOption_17kcj_185{width:100%;padding:.5rem 1rem;background-color:transparent;color:var(--foreground);text-align:left;justify-content:flex-start;border-radius:0}._languageOption_17kcj_185:first-child{border-top-left-radius:.5rem;border-top-right-radius:.5rem}._languageOption_17kcj_185:last-child{border-bottom-left-radius:.5rem;border-bottom-right-radius:.5rem}._languageOption_17kcj_185:hover{background-color:var(--muted)}._languageOption_17kcj_185._selected_17kcj_226{background-color:var(--accent);color:var(--accent-foreground)}._scrollArea_17kcj_231{flex:1;overflow-y:auto;padding:1.5rem 0}._navigation_17kcj_237{padding:0 1.5rem}._section_17kcj_241{margin-bottom:1rem}._sectionButton_17kcj_245{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._sectionButton_17kcj_245:focus-visible{outline:2px solid var(--ring);outline-offset:2px}._sectionButton_17kcj_245:disabled{pointer-events:none;opacity:.5}._sectionButton_17kcj_245{display:flex;align-items:center;justify-content:space-between;width:100%;padding:.5rem 1rem;background-color:transparent;color:var(--foreground);font-weight:600;gap:.5rem;border-radius:.5rem}._sectionButton_17kcj_245:hover{background-color:var(--muted)}._sectionButton_17kcj_245 ._icon_17kcj_156{transition:transform .15s cubic-bezier(.4,0,.2,1);margin-left:auto}._sectionButton_17kcj_245._expanded_17kcj_285 ._icon_17kcj_156{transform:rotate(90deg)}._sectionItems_17kcj_289{margin-top:.5rem;margin-left:1rem;display:flex;flex-direction:column;gap:.25rem}._navItem_17kcj_297{display:block;padding:.5rem 1rem;border-radius:.5rem;color:var(--muted-foreground);text-decoration:none;transition:all .15s cubic-bezier(.4,0,.2,1);font-size:.875rem}._navItem_17kcj_297:hover{background-color:var(--muted);color:var(--foreground)}._navItem_17kcj_297._active_17kcj_310{background-color:var(--accent);color:var(--accent-foreground);font-weight:500}._navItemContent_17kcj_316{display:flex;align-items:center;gap:.5rem}._navItemTitle_17kcj_322{flex:1}@media(min-width:1024px){._mobileMenu_17kcj_18,._backdrop_17kcj_1{display:none}}._sidebar_1pfbz_1{position:fixed;top:0;left:0;width:16rem;height:100vh;background-color:var(--sidebar);overflow-y:auto;z-index:1020}@media(max-width:767px){._sidebar_1pfbz_1{display:none}}._header_1pfbz_17{position:sticky;top:0;z-index:1020;padding:1rem;background-color:var(--sidebar);display:flex;flex-direction:column;gap:.5rem;padding-bottom:0}._brand_1pfbz_29{display:flex;align-items:center;gap:.5rem}._cloudIcon_1pfbz_35{width:1.5rem;height:1.5rem;flex-shrink:0}._cloudIcon_1pfbz_35 .accent{fill:#d33079}._title_1pfbz_44{font-size:1rem;font-weight:600;color:var(--foreground);margin:0;letter-spacing:-.02em}._languageSelect_1pfbz_52{position:relative;margin-top:.25rem;width:100%}._languageButton_1pfbz_58{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._languageButton_1pfbz_58:focus-visible{outline:2px solid var(--ring);outline-offset:2px}._languageButton_1pfbz_58:disabled{pointer-events:none;opacity:.5}._languageButton_1pfbz_58{display:flex;align-items:center;justify-content:space-between;padding:.25rem .5rem;width:100%;gap:.25rem;font-size:.8rem;background:transparent;border:1px solid var(--border);border-radius:.25rem;color:var(--muted-foreground)}._languageButton_1pfbz_58:hover{background-color:var(--muted);color:var(--foreground)}._languageButton_1pfbz_58 ._icon_1pfbz_96{width:.875rem;height:.875rem;flex-shrink:0}._languageButton_1pfbz_58 ._chevron_1pfbz_101{width:.875rem;height:.875rem;flex-shrink:0;transition:transform .15s cubic-bezier(.4,0,.2,1)}._languageButton_1pfbz_58[aria-expanded=true] ._chevron_1pfbz_101{transform:rotate(180deg)}._languageDropdown_1pfbz_111{position:absolute;top:100%;left:0;right:0;margin-top:.25rem;background-color:var(--popover);border:1px solid var(--border);border-radius:.5rem;box-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;z-index:1000;overflow:hidden}._languageOption_1pfbz_125{display:block;width:100%;padding:.25rem .5rem;text-align:left;background:none;border:none;color:var(--popover-foreground);font-size:.85rem;cursor:pointer;transition:background-color .15s cubic-bezier(.4,0,.2,1)}._languageOption_1pfbz_125:hover{background-color:var(--muted)}._languageOption_1pfbz_125:focus{outline:none;background-color:var(--muted)}._languageOption_1pfbz_125._selected_1pfbz_144{background-color:var(--muted);color:var(--foreground)}._scrollArea_1pfbz_149{height:calc(100vh - 120px);padding:1rem .5rem 1rem 1rem;overflow-y:auto}._navigation_1pfbz_155{display:flex;flex-direction:column;gap:.125rem}._section_1pfbz_161{display:flex;flex-direction:column;gap:0}._sectionButton_1pfbz_167{display:inline-flex;align-items:center;justify-content:center;white-space:nowrap;border-radius:.5rem;font-size:.875rem;font-weight:500;transition:.15s cubic-bezier(.4,0,.2,1);cursor:pointer;border:none;outline:none}._sectionButton_1pfbz_167:focus-visible{outline:2px solid var(--ring);outline-offset:2px}._sectionButton_1pfbz_167:disabled{pointer-events:none;opacity:.5}._sectionButton_1pfbz_167{display:flex;align-items:center;justify-content:space-between;width:100%;padding:.25rem .5rem;font-weight:500;font-size:.85rem;color:var(--muted-foreground);background:transparent;text-align:left;letter-spacing:-.01em;border:none}._sectionButton_1pfbz_167:hover{color:var(--foreground)}._sectionButton_1pfbz_167 ._icon_1pfbz_96{width:.875rem;height:.875rem;transition:transform .15s cubic-bezier(.4,0,.2,1)}._sectionButton_1pfbz_167._expanded_1pfbz_210 ._icon_1pfbz_96{transform:rotate(90deg)}._sectionItems_1pfbz_214{margin-top:.25rem;padding-left:1rem;display:flex;flex-direction:column;gap:.125rem}._navItem_1pfbz_222{display:block;width:100%;padding:.25rem .5rem;border-radius:.25rem;font-size:.85rem;color:var(--muted-foreground);text-decoration:none;transition:color .15s cubic-bezier(.4,0,.2,1)}._navItem_1pfbz_222:hover{color:var(--foreground)}._navItem_1pfbz_222._active_1pfbz_235{color:var(--foreground);font-weight:500}._navItemContent_1pfbz_240{display:flex;align-items:center;justify-content:space-between;width:100%}._sidebar_1pfbz_1::-webkit-scrollbar{width:6px}._sidebar_1pfbz_1::-webkit-scrollbar-track{background:transparent}._sidebar_1pfbz_1::-webkit-scrollbar-thumb{background:var(--muted-foreground);border-radius:9999px;opacity:.3}._sidebar_1pfbz_1::-webkit-scrollbar-thumb:hover{opacity:.6}._app_1vinw_1{min-height:100vh;background-color:var(--background);color:var(--foreground);display:flex;flex-direction:column}._layout_1vinw_9{display:flex;flex:1;min-height:calc(100vh - 3.5rem)}._main_1vinw_15{flex:1;display:flex;flex-direction:column;margin-left:16rem}@media(max-width:767px){._main_1vinw_15{margin-left:0}}._contentWrapper_1vinw_27{display:flex;flex:1;position:relative;width:100%;max-width:80rem;margin:0 auto;padding:2rem}@media(max-width:1024px){._contentWrapper_1vinw_27{padding:1.5rem}}@media(max-width:767px){._contentWrapper_1vinw_27{padding:1rem}}
|