@dodlhuat/basix 1.2.0 → 1.2.1

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.
Files changed (93) hide show
  1. package/README.md +56 -1
  2. package/css/accordion.scss +86 -87
  3. package/css/alert.scss +137 -137
  4. package/css/button.scss +48 -0
  5. package/css/calendar.scss +957 -0
  6. package/css/card.scss +65 -65
  7. package/css/chart.scss +270 -157
  8. package/css/chat-bubbles.scss +134 -68
  9. package/css/chips.scss +109 -19
  10. package/css/colors.scss +32 -32
  11. package/css/datepicker.scss +336 -336
  12. package/css/defaults.scss +90 -90
  13. package/css/docs.scss +529 -0
  14. package/css/editor.scss +36 -0
  15. package/css/file-uploader.scss +1 -1
  16. package/css/flyout-menu.scss +361 -361
  17. package/css/form.scss +0 -15
  18. package/css/gallery.scss +65 -6
  19. package/css/grid.scss +41 -40
  20. package/css/group-picker.scss +345 -0
  21. package/css/guitar-chords.css +250 -250
  22. package/css/icons.scss +330 -330
  23. package/css/parameters.scss +3 -3
  24. package/css/placeholder.scss +33 -33
  25. package/css/popover.scss +206 -0
  26. package/css/progress.scss +76 -32
  27. package/css/properties.scss +51 -36
  28. package/css/push-menu.scss +302 -174
  29. package/css/reset.scss +39 -39
  30. package/css/scrollbar.scss +62 -5
  31. package/css/sidebar-nav.scss +92 -0
  32. package/css/spinner.scss +65 -65
  33. package/css/stepper.scss +48 -12
  34. package/css/style.css +3159 -254
  35. package/css/style.css.map +1 -1
  36. package/css/style.min.css +1 -1
  37. package/css/style.scss +51 -45
  38. package/css/table.scss +199 -199
  39. package/css/tabs.scss +154 -123
  40. package/css/timeline.scss +83 -38
  41. package/css/timepicker.scss +100 -5
  42. package/css/toast.scss +81 -81
  43. package/css/virtual-dropdown.scss +35 -29
  44. package/js/calendar.js +532 -0
  45. package/js/calendar.ts +706 -0
  46. package/js/chart.js +573 -257
  47. package/js/chart.ts +692 -0
  48. package/js/code-viewer.js +10 -10
  49. package/js/code-viewer.ts +188 -188
  50. package/js/datepicker.ts +627 -627
  51. package/js/docs-nav.js +204 -0
  52. package/js/dropdown.ts +179 -179
  53. package/js/editor.js +50 -6
  54. package/js/editor.ts +483 -444
  55. package/js/file-uploader.js +1 -0
  56. package/js/file-uploader.ts +1 -0
  57. package/js/flyout-menu.js +14 -14
  58. package/js/flyout-menu.ts +249 -249
  59. package/js/form-builder.js +106 -106
  60. package/js/gallery.js +14 -8
  61. package/js/gallery.ts +245 -236
  62. package/js/group-picker.js +342 -0
  63. package/js/group-picker.ts +447 -0
  64. package/js/guitar-chords.js +268 -268
  65. package/js/lazy-loader.js +121 -121
  66. package/js/modal.ts +166 -166
  67. package/js/popover.js +163 -0
  68. package/js/popover.ts +219 -0
  69. package/js/position.js +108 -0
  70. package/js/position.ts +111 -0
  71. package/js/push-menu.js +113 -0
  72. package/js/push-menu.ts +284 -145
  73. package/js/request.js +50 -50
  74. package/js/scroll.ts +47 -47
  75. package/js/scrollbar.js +13 -0
  76. package/js/scrollbar.ts +324 -307
  77. package/js/select.ts +216 -216
  78. package/js/sidebar-nav.js +41 -0
  79. package/js/sidebar-nav.ts +66 -0
  80. package/js/table.ts +452 -452
  81. package/js/tabs.ts +279 -279
  82. package/js/theme.js +17 -6
  83. package/js/theme.ts +234 -224
  84. package/js/toast.ts +137 -137
  85. package/js/tooltip.js +6 -60
  86. package/js/tooltip.ts +184 -251
  87. package/js/tsconfig.json +18 -18
  88. package/js/utils.ts +83 -83
  89. package/js/virtual-dropdown.js +25 -25
  90. package/js/virtual-dropdown.ts +365 -365
  91. package/package.json +39 -39
  92. package/js/index.js +0 -816
  93. package/js/index.ts +0 -987
@@ -1,362 +1,362 @@
1
- /* Flyout menu uses its own dark palette intentionally —
2
- it renders over any background regardless of light/dark mode.
3
- Scoped here rather than polluting :root. */
4
- .flyout-menu,
5
- .flyout-overlay,
6
- .site-header,
7
- .main-content {
8
- --flyout-text: #f8fafc;
9
- --flyout-bg: rgba(15, 23, 42, 0.7);
10
- --flyout-border: rgba(255, 255, 255, 0.1);
11
- }
12
-
13
- :root {
14
- --menu-width: 320px;
15
- --transition-speed: 0.4s;
16
- }
17
-
18
- * {
19
- box-sizing: border-box;
20
- margin: 0;
21
- padding: 0;
22
- }
23
-
24
- body {
25
- overflow-x: hidden;
26
- min-height: 100vh;
27
- }
28
-
29
- /* Header */
30
- .site-header {
31
- display: flex;
32
- justify-content: space-between;
33
- align-items: center;
34
- padding: 1.5rem 2rem;
35
- position: relative;
36
- z-index: 10;
37
- }
38
-
39
- .logo {
40
- font-size: 1.5rem;
41
- font-weight: 700;
42
- letter-spacing: -0.02em;
43
- }
44
-
45
- .menu-trigger {
46
- background: none;
47
- border: none;
48
- color: var(--flyout-text);
49
- cursor: pointer;
50
- padding: 0.5rem;
51
- transition: transform 0.2s;
52
- }
53
-
54
- .menu-trigger:hover {
55
- transform: scale(1.1);
56
- color: var(--accent-color);
57
- }
58
-
59
- .main-content {
60
- display: flex;
61
- flex-direction: column;
62
- align-items: center;
63
- justify-content: center;
64
- height: 80vh;
65
- text-align: center;
66
- padding: 2rem;
67
- }
68
-
69
- .main-content h1 {
70
- font-size: 3rem;
71
- margin-bottom: 1rem;
72
- background: linear-gradient(to right, #c084fc, #6366f1);
73
- background-clip: text;
74
- -webkit-background-clip: text;
75
- -webkit-text-fill-color: transparent;
76
- }
77
-
78
- .main-content p {
79
- color: #94a3b8;
80
- font-size: 1.2rem;
81
- }
82
-
83
- /* Flyout Overlay */
84
- .flyout-overlay {
85
- position: fixed;
86
- top: 0;
87
- left: 0;
88
- width: 100%;
89
- height: 100%;
90
- background: rgba(0, 0, 0, 0.5);
91
- backdrop-filter: blur(4px);
92
- opacity: 0;
93
- visibility: hidden;
94
- transition: opacity var(--transition-speed), visibility var(--transition-speed);
95
- z-index: 40;
96
- }
97
-
98
- .flyout-overlay.is-visible {
99
- opacity: 1;
100
- visibility: visible;
101
- }
102
-
103
- /* Flyout Menu Base */
104
- .flyout-menu {
105
- position: fixed;
106
- background: var(--flyout-bg);
107
- backdrop-filter: blur(20px);
108
- -webkit-backdrop-filter: blur(20px);
109
- z-index: 50;
110
- display: flex;
111
- flex-direction: column;
112
- padding: 2rem;
113
- box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
114
- transition: transform var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1);
115
- /* Smoother rollout */
116
- }
117
-
118
- /* Directional Variants */
119
- .flyout-from-right {
120
- top: 0;
121
- right: 0;
122
- width: var(--menu-width);
123
- height: 100%;
124
- border-left: 1px solid var(--flyout-border);
125
- transform: translateX(100%);
126
- }
127
-
128
- .flyout-from-left {
129
- top: 0;
130
- left: 0;
131
- width: var(--menu-width);
132
- height: 100%;
133
- border-right: 1px solid var(--flyout-border);
134
- transform: translateX(-100%);
135
- }
136
-
137
- .flyout-menu.is-open {
138
- transform: translate(0, 0);
139
- }
140
-
141
- /* Flyout Header */
142
- .flyout-header {
143
- display: flex;
144
- justify-content: space-between;
145
- align-items: center;
146
- margin-bottom: 3rem;
147
- }
148
-
149
- .flyout-title {
150
- font-size: 1.25rem;
151
- font-weight: 600;
152
- color: #94a3b8;
153
- text-transform: uppercase;
154
- letter-spacing: 0.1em;
155
- }
156
-
157
- .close-menu {
158
- background: none;
159
- border: none;
160
- color: var(--flyout-text);
161
- cursor: pointer;
162
- padding: 0.5rem;
163
- transition: transform 0.2s, color 0.2s;
164
- }
165
-
166
- .close-menu:hover {
167
- transform: rotate(90deg);
168
- color: var(--accent-color);
169
- }
170
-
171
- /* Flyout Links */
172
- .flyout-links {
173
- list-style: none;
174
- flex-grow: 1;
175
- }
176
-
177
- .flyout-links li {
178
- margin-bottom: 1.5rem;
179
- overflow: hidden;
180
- }
181
-
182
- .flyout-links a,
183
- .submenu-toggle {
184
- display: flex;
185
- align-items: center;
186
- justify-content: space-between;
187
- width: 100%;
188
- background: none;
189
- border: none;
190
- font-size: 2rem;
191
- font-weight: 600;
192
- color: var(--flyout-text);
193
- text-decoration: none;
194
- cursor: pointer;
195
- font-family: inherit;
196
- padding: 0;
197
- transform: translateY(100%);
198
- transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s;
199
- transition-delay: var(--delay);
200
- text-align: left;
201
- }
202
-
203
- .flyout-menu.is-open .flyout-links a,
204
- .flyout-menu.is-open .submenu-toggle {
205
- transform: translateY(0);
206
- }
207
-
208
- .flyout-links a:hover,
209
- .submenu-toggle:hover {
210
- color: var(--accent-color);
211
- }
212
-
213
- .chevron {
214
- transition: transform 0.3s;
215
- opacity: 0.7;
216
- }
217
-
218
- .submenu-toggle.active .chevron {
219
- transform: rotate(180deg);
220
- }
221
-
222
- /* Submenu */
223
- .submenu {
224
- list-style: none;
225
- max-height: 0;
226
- overflow: hidden;
227
- transition: max-height 0.3s ease-out;
228
- padding-left: 1rem;
229
- border-left: 1px solid rgba(255, 255, 255, 0.1);
230
- margin-top: 0;
231
- }
232
-
233
- .submenu.is-open {
234
- max-height: 500px;
235
- /* Reduced from 2000px for tighter animation */
236
- /* Arbitrary large height, increased for nesting */
237
- margin-top: 1rem;
238
- transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
239
- /* Smoother easing */
240
- }
241
-
242
- .submenu li {
243
- margin-bottom: 0.5rem;
244
- }
245
-
246
- .submenu a {
247
- font-size: 1.25rem;
248
- font-weight: 400;
249
- color: #cbd5e1;
250
- transform: none !important;
251
- /* Override slide-in for submenu items */
252
- transition-delay: 0s !important;
253
- }
254
-
255
- .submenu .submenu-toggle {
256
- font-size: 1.25rem;
257
- font-weight: 400;
258
- color: #cbd5e1;
259
- transform: none !important;
260
- transition-delay: 0s !important;
261
- padding: 0;
262
- margin: 0;
263
- }
264
-
265
- /* Flyout Footer */
266
- .flyout-footer {
267
- padding-top: 2rem;
268
- border-top: 1px solid var(--flyout-border);
269
- color: #64748b;
270
- font-size: 0.9rem;
271
- opacity: 0;
272
- transform: translateY(20px);
273
- transition: opacity 0.4s, transform 0.4s;
274
- transition-delay: var(--delay);
275
- }
276
-
277
- .flyout-menu.is-open .flyout-footer {
278
- opacity: 1;
279
- transform: translateY(0);
280
- }
281
-
282
- /* Mobile Responsiveness */
283
- @media (max-width: 480px) {
284
- :root {
285
- --menu-width: 100%;
286
- }
287
-
288
- .main-content h1 {
289
- font-size: 2rem;
290
- }
291
-
292
- /* Force Fullscreen for all directions */
293
- .flyout-from-right,
294
- .flyout-from-left,
295
- .flyout-from-top {
296
- width: 100% !important;
297
- height: 100% !important;
298
- top: 0 !important;
299
- left: 0 !important;
300
- right: auto !important;
301
- bottom: auto !important;
302
- border: none !important;
303
- /* Remove borders for cleaner fullscreen look */
304
- border-right: 1px solid var(--flyout-border) !important;
305
- /* Add consistent right border */
306
- transform: translateX(-100%) !important;
307
- /* Force ALL to slide from LEFT with !important */
308
- }
309
-
310
- /* Remove specific transforms and force left slide */
311
- .flyout-from-right,
312
- .flyout-from-left,
313
- .flyout-from-top {
314
- transform: translateX(-100%) !important;
315
- }
316
-
317
- .flyout-menu.is-open {
318
- transform: translate(0, 0) !important;
319
- }
320
-
321
- /* Reset Top Menu Horizontal Layout to Vertical for Mobile */
322
- .flyout-from-top .flyout-links {
323
- flex-direction: column;
324
- align-items: stretch;
325
- gap: 0;
326
- }
327
-
328
- .flyout-from-top .flyout-links>li {
329
- margin-bottom: 1.5rem;
330
- }
331
-
332
- .flyout-from-top .flyout-links>li>a,
333
- .flyout-from-top .flyout-links>li>.submenu-toggle {
334
- font-size: 2rem;
335
- /* Restore larger size */
336
- justify-content: space-between;
337
- }
338
-
339
- .flyout-from-top .submenu {
340
- position: static;
341
- transform: none;
342
- margin-top: 0;
343
- min-width: 100%;
344
- box-shadow: none;
345
- border: none;
346
- background: transparent;
347
- padding-left: 1rem;
348
- border-left: 1px solid rgba(255, 255, 255, 0.1);
349
- text-align: left;
350
- }
351
-
352
- .flyout-from-top .submenu.is-open {
353
- transform: none;
354
- margin-top: 1rem;
355
- }
356
-
357
- .flyout-from-top .submenu a {
358
- font-size: 1.25rem;
359
- justify-content: space-between;
360
- /* Match default behavior */
361
- }
1
+ /* Flyout menu uses its own dark palette intentionally —
2
+ it renders over any background regardless of light/dark mode.
3
+ Scoped here rather than polluting :root. */
4
+ .flyout-menu,
5
+ .flyout-overlay,
6
+ .site-header,
7
+ .main-content {
8
+ --flyout-text: #f8fafc;
9
+ --flyout-bg: rgba(15, 23, 42, 0.7);
10
+ --flyout-border: rgba(255, 255, 255, 0.1);
11
+ }
12
+
13
+ :root {
14
+ --menu-width: 320px;
15
+ --transition-speed: 0.4s;
16
+ }
17
+
18
+ * {
19
+ box-sizing: border-box;
20
+ margin: 0;
21
+ padding: 0;
22
+ }
23
+
24
+ body {
25
+ overflow-x: hidden;
26
+ min-height: 100vh;
27
+ }
28
+
29
+ /* Header */
30
+ .site-header {
31
+ display: flex;
32
+ justify-content: space-between;
33
+ align-items: center;
34
+ padding: 1.5rem 2rem;
35
+ position: relative;
36
+ z-index: 10;
37
+ }
38
+
39
+ .logo {
40
+ font-size: 1.5rem;
41
+ font-weight: 700;
42
+ letter-spacing: -0.02em;
43
+ }
44
+
45
+ .menu-trigger {
46
+ background: none;
47
+ border: none;
48
+ color: var(--flyout-text);
49
+ cursor: pointer;
50
+ padding: 0.5rem;
51
+ transition: transform 0.2s;
52
+ }
53
+
54
+ .menu-trigger:hover {
55
+ transform: scale(1.1);
56
+ color: var(--accent-color);
57
+ }
58
+
59
+ .main-content {
60
+ display: flex;
61
+ flex-direction: column;
62
+ align-items: center;
63
+ justify-content: center;
64
+ height: 80vh;
65
+ text-align: center;
66
+ padding: 2rem;
67
+ }
68
+
69
+ .main-content h1 {
70
+ font-size: 3rem;
71
+ margin-bottom: 1rem;
72
+ background: linear-gradient(to right, #c084fc, #6366f1);
73
+ background-clip: text;
74
+ -webkit-background-clip: text;
75
+ -webkit-text-fill-color: transparent;
76
+ }
77
+
78
+ .main-content p {
79
+ color: #94a3b8;
80
+ font-size: 1.2rem;
81
+ }
82
+
83
+ /* Flyout Overlay */
84
+ .flyout-overlay {
85
+ position: fixed;
86
+ top: 0;
87
+ left: 0;
88
+ width: 100%;
89
+ height: 100%;
90
+ background: rgba(0, 0, 0, 0.5);
91
+ backdrop-filter: blur(4px);
92
+ opacity: 0;
93
+ visibility: hidden;
94
+ transition: opacity var(--transition-speed), visibility var(--transition-speed);
95
+ z-index: 200;
96
+ }
97
+
98
+ .flyout-overlay.is-visible {
99
+ opacity: 1;
100
+ visibility: visible;
101
+ }
102
+
103
+ /* Flyout Menu Base */
104
+ .flyout-menu {
105
+ position: fixed;
106
+ background: var(--flyout-bg);
107
+ backdrop-filter: blur(20px);
108
+ -webkit-backdrop-filter: blur(20px);
109
+ z-index: 210;
110
+ display: flex;
111
+ flex-direction: column;
112
+ padding: 2rem;
113
+ box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
114
+ transition: transform var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1);
115
+ /* Smoother rollout */
116
+ }
117
+
118
+ /* Directional Variants */
119
+ .flyout-from-right {
120
+ top: 0;
121
+ right: 0;
122
+ width: var(--menu-width);
123
+ height: 100%;
124
+ border-left: 1px solid var(--flyout-border);
125
+ transform: translateX(100%);
126
+ }
127
+
128
+ .flyout-from-left {
129
+ top: 0;
130
+ left: 0;
131
+ width: var(--menu-width);
132
+ height: 100%;
133
+ border-right: 1px solid var(--flyout-border);
134
+ transform: translateX(-100%);
135
+ }
136
+
137
+ .flyout-menu.is-open {
138
+ transform: translate(0, 0);
139
+ }
140
+
141
+ /* Flyout Header */
142
+ .flyout-header {
143
+ display: flex;
144
+ justify-content: space-between;
145
+ align-items: center;
146
+ margin-bottom: 3rem;
147
+ }
148
+
149
+ .flyout-title {
150
+ font-size: 1.25rem;
151
+ font-weight: 600;
152
+ color: #94a3b8;
153
+ text-transform: uppercase;
154
+ letter-spacing: 0.1em;
155
+ }
156
+
157
+ .close-menu {
158
+ background: none;
159
+ border: none;
160
+ color: var(--flyout-text);
161
+ cursor: pointer;
162
+ padding: 0.5rem;
163
+ transition: transform 0.2s, color 0.2s;
164
+ }
165
+
166
+ .close-menu:hover {
167
+ transform: rotate(90deg);
168
+ color: var(--accent-color);
169
+ }
170
+
171
+ /* Flyout Links */
172
+ .flyout-links {
173
+ list-style: none;
174
+ flex-grow: 1;
175
+ }
176
+
177
+ .flyout-links li {
178
+ margin-bottom: 1.5rem;
179
+ overflow: hidden;
180
+ }
181
+
182
+ .flyout-links a,
183
+ .submenu-toggle {
184
+ display: flex;
185
+ align-items: center;
186
+ justify-content: space-between;
187
+ width: 100%;
188
+ background: none;
189
+ border: none;
190
+ font-size: 2rem;
191
+ font-weight: 600;
192
+ color: var(--flyout-text);
193
+ text-decoration: none;
194
+ cursor: pointer;
195
+ font-family: inherit;
196
+ padding: 0;
197
+ transform: translateY(100%);
198
+ transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s;
199
+ transition-delay: var(--delay);
200
+ text-align: left;
201
+ }
202
+
203
+ .flyout-menu.is-open .flyout-links a,
204
+ .flyout-menu.is-open .submenu-toggle {
205
+ transform: translateY(0);
206
+ }
207
+
208
+ .flyout-links a:hover,
209
+ .submenu-toggle:hover {
210
+ color: var(--accent-color);
211
+ }
212
+
213
+ .chevron {
214
+ transition: transform 0.3s;
215
+ opacity: 0.7;
216
+ }
217
+
218
+ .submenu-toggle.active .chevron {
219
+ transform: rotate(180deg);
220
+ }
221
+
222
+ /* Submenu */
223
+ .submenu {
224
+ list-style: none;
225
+ max-height: 0;
226
+ overflow: hidden;
227
+ transition: max-height 0.3s ease-out;
228
+ padding-left: 1rem;
229
+ border-left: 1px solid rgba(255, 255, 255, 0.1);
230
+ margin-top: 0;
231
+ }
232
+
233
+ .submenu.is-open {
234
+ max-height: 500px;
235
+ /* Reduced from 2000px for tighter animation */
236
+ /* Arbitrary large height, increased for nesting */
237
+ margin-top: 1rem;
238
+ transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
239
+ /* Smoother easing */
240
+ }
241
+
242
+ .submenu li {
243
+ margin-bottom: 0.5rem;
244
+ }
245
+
246
+ .submenu a {
247
+ font-size: 1.25rem;
248
+ font-weight: 400;
249
+ color: #cbd5e1;
250
+ transform: none !important;
251
+ /* Override slide-in for submenu items */
252
+ transition-delay: 0s !important;
253
+ }
254
+
255
+ .submenu .submenu-toggle {
256
+ font-size: 1.25rem;
257
+ font-weight: 400;
258
+ color: #cbd5e1;
259
+ transform: none !important;
260
+ transition-delay: 0s !important;
261
+ padding: 0;
262
+ margin: 0;
263
+ }
264
+
265
+ /* Flyout Footer */
266
+ .flyout-footer {
267
+ padding-top: 2rem;
268
+ border-top: 1px solid var(--flyout-border);
269
+ color: #64748b;
270
+ font-size: 0.9rem;
271
+ opacity: 0;
272
+ transform: translateY(20px);
273
+ transition: opacity 0.4s, transform 0.4s;
274
+ transition-delay: var(--delay);
275
+ }
276
+
277
+ .flyout-menu.is-open .flyout-footer {
278
+ opacity: 1;
279
+ transform: translateY(0);
280
+ }
281
+
282
+ /* Mobile Responsiveness */
283
+ @media (max-width: 480px) {
284
+ :root {
285
+ --menu-width: 100%;
286
+ }
287
+
288
+ .main-content h1 {
289
+ font-size: 2rem;
290
+ }
291
+
292
+ /* Force Fullscreen for all directions */
293
+ .flyout-from-right,
294
+ .flyout-from-left,
295
+ .flyout-from-top {
296
+ width: 100% !important;
297
+ height: 100% !important;
298
+ top: 0 !important;
299
+ left: 0 !important;
300
+ right: auto !important;
301
+ bottom: auto !important;
302
+ border: none !important;
303
+ /* Remove borders for cleaner fullscreen look */
304
+ border-right: 1px solid var(--flyout-border) !important;
305
+ /* Add consistent right border */
306
+ transform: translateX(-100%) !important;
307
+ /* Force ALL to slide from LEFT with !important */
308
+ }
309
+
310
+ /* Remove specific transforms and force left slide */
311
+ .flyout-from-right,
312
+ .flyout-from-left,
313
+ .flyout-from-top {
314
+ transform: translateX(-100%) !important;
315
+ }
316
+
317
+ .flyout-menu.is-open {
318
+ transform: translate(0, 0) !important;
319
+ }
320
+
321
+ /* Reset Top Menu Horizontal Layout to Vertical for Mobile */
322
+ .flyout-from-top .flyout-links {
323
+ flex-direction: column;
324
+ align-items: stretch;
325
+ gap: 0;
326
+ }
327
+
328
+ .flyout-from-top .flyout-links>li {
329
+ margin-bottom: 1.5rem;
330
+ }
331
+
332
+ .flyout-from-top .flyout-links>li>a,
333
+ .flyout-from-top .flyout-links>li>.submenu-toggle {
334
+ font-size: 2rem;
335
+ /* Restore larger size */
336
+ justify-content: space-between;
337
+ }
338
+
339
+ .flyout-from-top .submenu {
340
+ position: static;
341
+ transform: none;
342
+ margin-top: 0;
343
+ min-width: 100%;
344
+ box-shadow: none;
345
+ border: none;
346
+ background: transparent;
347
+ padding-left: 1rem;
348
+ border-left: 1px solid rgba(255, 255, 255, 0.1);
349
+ text-align: left;
350
+ }
351
+
352
+ .flyout-from-top .submenu.is-open {
353
+ transform: none;
354
+ margin-top: 1rem;
355
+ }
356
+
357
+ .flyout-from-top .submenu a {
358
+ font-size: 1.25rem;
359
+ justify-content: space-between;
360
+ /* Match default behavior */
361
+ }
362
362
  }