srcdev-nuxt-components 2.5.0 → 2.5.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.
|
@@ -156,9 +156,7 @@ watch(
|
|
|
156
156
|
text-wrap: nowrap;
|
|
157
157
|
}
|
|
158
158
|
}
|
|
159
|
-
.icon {
|
|
160
|
-
|
|
161
|
-
}
|
|
159
|
+
/* .icon {} */
|
|
162
160
|
}
|
|
163
161
|
.display-details-content {
|
|
164
162
|
.overflow-navigation-sub-nav-inner {
|
|
@@ -176,9 +174,7 @@ watch(
|
|
|
176
174
|
text-decoration: none;
|
|
177
175
|
color: inherit;
|
|
178
176
|
|
|
179
|
-
.overflow-navigation-sub-nav-text {
|
|
180
|
-
|
|
181
|
-
}
|
|
177
|
+
/* .overflow-navigation-sub-nav-text {} */
|
|
182
178
|
}
|
|
183
179
|
}
|
|
184
180
|
}
|
|
@@ -1,78 +1,61 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
<
|
|
8
|
-
v-
|
|
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
|
-
<Icon name="gravity-ui:ellipsis" class="icon" />
|
|
60
|
-
</summary>
|
|
61
|
-
<div class="overflow-details-nav">
|
|
62
|
-
<NavigationItems
|
|
63
|
-
:main-navigation-state="mainNavigationState"
|
|
64
|
-
/>
|
|
65
|
-
</div>
|
|
66
|
-
</details>
|
|
67
|
-
<NuxtLink class="main-navigation-link" to="/"><Icon name="material-symbols:settings-outline-rounded" class="icon" /></NuxtLink>
|
|
68
|
-
</nav>
|
|
69
|
-
</div>
|
|
70
|
-
</header>
|
|
71
|
-
<LayoutRow
|
|
72
|
-
tag="div"
|
|
73
|
-
variant="full"
|
|
74
|
-
:style-class-passthrough="['mb-20', 'debug-grid']"
|
|
75
|
-
>
|
|
2
|
+
<div class="navigation" :class="[elementClasses, { loaded: navLoaded }]" ref="navigationWrapper">
|
|
3
|
+
<nav class="main-navigation" ref="mainNav">
|
|
4
|
+
|
|
5
|
+
<ul v-for="(navGroup, groupKey) in responsiveNavLinks" :key="groupKey" class="main-navigation-list"
|
|
6
|
+
:ref="el => setNavRef(String(groupKey), el as HTMLUListElement | null)">
|
|
7
|
+
<template v-for="(link, localIndex) in navGroup" :key="localIndex">
|
|
8
|
+
<li v-if="link.path" class="main-navigation-item"
|
|
9
|
+
:class="{ 'visually-hidden': !mainNavigationState.clonedNavLinks?.[groupKey]?.[localIndex]?.config?.visible }"
|
|
10
|
+
:style="{ '--_main-navigation-item-width': mainNavigationState.clonedNavLinks?.[groupKey]?.[localIndex]?.config?.width + 'px' }"
|
|
11
|
+
ref="mainNavigationItems" :data-group-key="groupKey" :data-local-index="localIndex">
|
|
12
|
+
<NuxtLink class="main-navigation-link" :to="link.path">{{ link.name }}</NuxtLink>
|
|
13
|
+
</li>
|
|
14
|
+
<li v-else class="main-navigation-item"
|
|
15
|
+
:class="{ 'visually-hidden': !mainNavigationState.clonedNavLinks?.[groupKey]?.[localIndex]?.config?.visible }"
|
|
16
|
+
:style="{ '--_main-navigation-item-width': mainNavigationState.clonedNavLinks?.[groupKey]?.[localIndex]?.config?.width + 'px' }"
|
|
17
|
+
ref="mainNavigationItems" :data-group-key="groupKey" :data-local-index="localIndex">
|
|
18
|
+
<details class="main-navigation-details" name="navigation-group" ref="navigationDetails">
|
|
19
|
+
<summary @mouseover="handleSummaryHover($event)" @focusin="handleSummaryHover($event)"
|
|
20
|
+
class="main-navigation-details-summary has-toggle-icon">
|
|
21
|
+
<Icon name="mdi:chevron-down" class="icon" />
|
|
22
|
+
{{ link.childLinksTitle }}
|
|
23
|
+
</summary>
|
|
24
|
+
<div class="main-navigation-sub-nav">
|
|
25
|
+
<ul class="main-navigation-sub-nav-list">
|
|
26
|
+
<li class="main-navigation-sub-nav-item" v-for="childLink in link.childLinks" :key="childLink.name">
|
|
27
|
+
<NuxtLink :to="childLink.path" class="main-navigation-sub-nav-link">{{ childLink.name }}</NuxtLink>
|
|
28
|
+
</li>
|
|
29
|
+
</ul>
|
|
30
|
+
</div>
|
|
31
|
+
</details>
|
|
32
|
+
</li>
|
|
33
|
+
</template>
|
|
34
|
+
</ul>
|
|
35
|
+
|
|
36
|
+
</nav>
|
|
37
|
+
<nav class="secondary-navigation" ref="secondaryNav">
|
|
38
|
+
<details class="overflow-details" :class="[{ 'visually-hidden': !navLoaded || !showOverflowDetails }]"
|
|
39
|
+
ref="overflowDetails" name="overflow-group">
|
|
40
|
+
<summary class="overflow-details-summary has-toggle-icon">
|
|
41
|
+
<Icon name="gravity-ui:ellipsis" class="icon" />
|
|
42
|
+
</summary>
|
|
43
|
+
<div class="overflow-details-nav">
|
|
44
|
+
<NavigationItems :main-navigation-state="mainNavigationState" />
|
|
45
|
+
</div>
|
|
46
|
+
</details>
|
|
47
|
+
<ul class="secondary-navigation-list">
|
|
48
|
+
<li class="secondary-navigation-item">
|
|
49
|
+
<NuxtLink class="secondary-navigation-link" to="/">
|
|
50
|
+
<Icon name="material-symbols:settings-outline-rounded" class="icon" />
|
|
51
|
+
</NuxtLink>
|
|
52
|
+
</li>
|
|
53
|
+
</ul>
|
|
54
|
+
</nav>
|
|
55
|
+
</div>
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
<LayoutRow tag="div" variant="full" :style-class-passthrough="['mb-20', 'debug-grid']">
|
|
76
59
|
<ClientOnly>
|
|
77
60
|
<div>
|
|
78
61
|
<h2 class="heading-4">navigationWrapperRects</h2>
|
|
@@ -303,21 +286,8 @@ watch(
|
|
|
303
286
|
</script>
|
|
304
287
|
|
|
305
288
|
<style lang="css">
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
grid-template-columns: auto 1fr;
|
|
309
|
-
gap: 24px;
|
|
310
|
-
align-items: center;
|
|
311
|
-
padding-block: 12px;
|
|
312
|
-
padding-inline: 24px;
|
|
313
|
-
|
|
314
|
-
/* Make sure always on top of page content */
|
|
315
|
-
position: relative;
|
|
316
|
-
z-index: 999999;
|
|
317
|
-
|
|
318
|
-
h1 {
|
|
319
|
-
text-wrap-mode: nowrap;
|
|
320
|
-
}
|
|
289
|
+
|
|
290
|
+
.navigation {
|
|
321
291
|
|
|
322
292
|
ul,
|
|
323
293
|
ol {
|
|
@@ -333,241 +303,249 @@ watch(
|
|
|
333
303
|
}
|
|
334
304
|
}
|
|
335
305
|
|
|
336
|
-
|
|
337
|
-
--_icon-transform: scaleY(1);
|
|
338
|
-
|
|
339
|
-
&[open] {
|
|
340
|
-
--_icon-transform: scaleY(-1);
|
|
341
|
-
}
|
|
342
|
-
|
|
343
|
-
.has-toggle-icon {
|
|
344
|
-
display: flex;
|
|
345
|
-
gap: 6px;
|
|
346
|
-
text-wrap-mode: nowrap;
|
|
306
|
+
--_link-visibility-transition: none;
|
|
347
307
|
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
transform: var(--_icon-transform);
|
|
351
|
-
transition: transform 0.2s ease-in-out;
|
|
352
|
-
}
|
|
353
|
-
}
|
|
308
|
+
&.loaded {
|
|
309
|
+
--_link-visibility-transition: all 0.2s ease-in-out;
|
|
354
310
|
}
|
|
355
311
|
|
|
356
|
-
|
|
357
|
-
|
|
312
|
+
display: grid;
|
|
313
|
+
grid-template-areas: 'navStack';
|
|
358
314
|
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
315
|
+
margin: 12px;
|
|
316
|
+
border-radius: 8px;
|
|
317
|
+
background-color: #efefef05;
|
|
318
|
+
border: 1px solid #efefef75;
|
|
319
|
+
padding: 12px;
|
|
362
320
|
|
|
321
|
+
.main-navigation {
|
|
322
|
+
grid-area: navStack;
|
|
323
|
+
display: flex;
|
|
324
|
+
flex-wrap: nowrap;
|
|
325
|
+
flex-grow: 1;
|
|
326
|
+
justify-content: space-between;
|
|
327
|
+
gap: 60px;
|
|
363
328
|
|
|
364
|
-
|
|
365
|
-
|
|
329
|
+
overflow-x: hidden;
|
|
330
|
+
margin-inline-end: v-bind(`${mainNavigationMarginBlockEnd}px`);
|
|
366
331
|
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
border: 1px solid #efefef75;
|
|
371
|
-
padding: 12px;
|
|
332
|
+
&.collapsed {
|
|
333
|
+
justify-content: flex-start;
|
|
334
|
+
}
|
|
372
335
|
|
|
373
|
-
|
|
374
|
-
* .main-navigation-link & .main-navigation-details placed here they can also exist within
|
|
375
|
-
*/
|
|
376
|
-
.main-navigation-link {
|
|
336
|
+
.main-navigation-list {
|
|
377
337
|
display: flex;
|
|
378
|
-
|
|
379
|
-
color: inherit;
|
|
380
|
-
text-decoration: none;
|
|
381
|
-
}
|
|
338
|
+
flex-wrap: nowrap;
|
|
382
339
|
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
list-style: none;
|
|
340
|
+
&:nth-of-type(1) {
|
|
341
|
+
gap: 30px;
|
|
386
342
|
}
|
|
387
343
|
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
display: none;
|
|
344
|
+
&:nth-of-type(2) {
|
|
345
|
+
gap: 30px;
|
|
391
346
|
}
|
|
392
347
|
|
|
393
|
-
|
|
394
|
-
cursor: pointer;
|
|
395
|
-
}
|
|
348
|
+
.main-navigation-item {
|
|
396
349
|
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
background-color: #000;
|
|
403
|
-
translate: 0 12px;
|
|
350
|
+
width: var(--_main-navigation-item-width);
|
|
351
|
+
overflow: hidden;
|
|
352
|
+
transition:
|
|
353
|
+
opacity 0.2s ease-in-out,
|
|
354
|
+
visibility 0.2s ease-in-out;
|
|
404
355
|
|
|
405
|
-
|
|
356
|
+
.main-navigation-link {
|
|
357
|
+
display: flex;
|
|
358
|
+
text-wrap-mode: nowrap;
|
|
359
|
+
color: inherit;
|
|
360
|
+
text-decoration: none;
|
|
361
|
+
margin-inline-start: 0;
|
|
362
|
+
transition: var(--_link-visibility-transition);
|
|
363
|
+
}
|
|
406
364
|
|
|
407
|
-
.main-navigation-
|
|
365
|
+
.main-navigation-details {
|
|
408
366
|
|
|
409
|
-
|
|
410
|
-
grid-template-columns: repeat(2, auto);
|
|
411
|
-
gap: 12px;
|
|
367
|
+
--_icon-transform: scaleY(1);
|
|
412
368
|
|
|
413
|
-
|
|
414
|
-
|
|
369
|
+
margin-inline-start: 0;
|
|
370
|
+
transition: var(--_link-visibility-transition);
|
|
415
371
|
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
372
|
+
&[open] {
|
|
373
|
+
--_icon-transform: scaleY(-1);
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.has-toggle-icon {
|
|
377
|
+
display: flex;
|
|
378
|
+
gap: 6px;
|
|
379
|
+
text-wrap-mode: nowrap;
|
|
419
380
|
|
|
420
|
-
.
|
|
381
|
+
.icon {
|
|
421
382
|
display: block;
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
color: inherit;
|
|
383
|
+
transform: var(--_icon-transform);
|
|
384
|
+
transition: transform 0.2s ease-in-out;
|
|
425
385
|
}
|
|
426
386
|
}
|
|
427
|
-
}
|
|
428
|
-
}
|
|
429
|
-
}
|
|
430
387
|
|
|
431
|
-
|
|
432
|
-
grid-area: navStack;
|
|
433
|
-
display: flex;
|
|
434
|
-
flex-wrap: nowrap;
|
|
435
|
-
flex-grow: 1;
|
|
436
|
-
justify-content: space-between;
|
|
437
|
-
gap: 60px;
|
|
388
|
+
.main-navigation-details-summary {
|
|
438
389
|
|
|
439
|
-
|
|
440
|
-
|
|
390
|
+
&::-webkit-details-marker,
|
|
391
|
+
&::marker {
|
|
392
|
+
display: none;
|
|
393
|
+
}
|
|
441
394
|
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
395
|
+
&:hover {
|
|
396
|
+
cursor: pointer;
|
|
397
|
+
}
|
|
445
398
|
|
|
446
|
-
|
|
447
|
-
display: flex;
|
|
448
|
-
flex-wrap: nowrap;
|
|
399
|
+
}
|
|
449
400
|
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
401
|
+
.main-navigation-sub-nav {
|
|
402
|
+
position: absolute;
|
|
403
|
+
padding: 12px;
|
|
404
|
+
border: 1px solid #efefef75;
|
|
405
|
+
border-radius: 8px;
|
|
406
|
+
background-color: #000;
|
|
407
|
+
translate: 0 12px;
|
|
453
408
|
|
|
454
|
-
|
|
455
|
-
gap: 30px;
|
|
456
|
-
}
|
|
409
|
+
min-width: var(--_main-navigation-item-width);
|
|
457
410
|
|
|
458
|
-
|
|
459
|
-
width: var(--_main-navigation-item-width);
|
|
460
|
-
overflow: hidden;
|
|
461
|
-
transition:
|
|
462
|
-
opacity 0.2s ease-in-out,
|
|
463
|
-
visibility 0.2s ease-in-out;
|
|
411
|
+
.main-navigation-sub-nav-list {
|
|
464
412
|
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
transition: var(--_link-visibility-transition);
|
|
469
|
-
}
|
|
413
|
+
display: grid;
|
|
414
|
+
grid-template-columns: repeat(2, auto);
|
|
415
|
+
gap: 12px;
|
|
470
416
|
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
opacity: 0;
|
|
417
|
+
.main-navigation-sub-nav-item {
|
|
418
|
+
margin-bottom: 8px;
|
|
474
419
|
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
420
|
+
&:last-child {
|
|
421
|
+
margin-bottom: 0;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.main-navigation-sub-nav-link {
|
|
425
|
+
display: block;
|
|
426
|
+
text-wrap-mode: nowrap;
|
|
427
|
+
text-decoration: none;
|
|
428
|
+
color: inherit;
|
|
429
|
+
}
|
|
430
|
+
}
|
|
478
431
|
}
|
|
479
432
|
}
|
|
480
433
|
}
|
|
481
|
-
}
|
|
482
|
-
}
|
|
483
434
|
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
display: flex;
|
|
489
|
-
gap: 12px;
|
|
490
|
-
align-items: center;
|
|
491
|
-
|
|
492
|
-
> a {
|
|
493
|
-
/* display: none; */
|
|
435
|
+
&.visually-hidden {
|
|
436
|
+
visibility: hidden;
|
|
437
|
+
opacity: 0;
|
|
494
438
|
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
439
|
+
.main-navigation-details,
|
|
440
|
+
.main-navigation-link {
|
|
441
|
+
margin-inline-start: var(--_main-navigation-item-width);
|
|
442
|
+
}
|
|
498
443
|
}
|
|
499
444
|
}
|
|
445
|
+
}
|
|
446
|
+
}
|
|
500
447
|
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
margin: 0;
|
|
505
|
-
position: relative;
|
|
506
|
-
cursor: pointer;
|
|
507
|
-
width: fit-content;
|
|
508
|
-
/* overflow: hidden; */
|
|
448
|
+
.secondary-navigation {
|
|
449
|
+
grid-area: navStack;
|
|
450
|
+
justify-self: end;
|
|
509
451
|
|
|
510
|
-
|
|
452
|
+
display: flex;
|
|
453
|
+
gap: 12px;
|
|
454
|
+
align-items: center;
|
|
511
455
|
|
|
512
|
-
|
|
513
|
-
opacity: 0;
|
|
514
|
-
visibility: hidden;
|
|
515
|
-
/* width: 0; */
|
|
516
|
-
}
|
|
456
|
+
.secondary-navigation-list {
|
|
517
457
|
|
|
518
|
-
|
|
519
|
-
|
|
458
|
+
.secondary-navigation-item {
|
|
459
|
+
|
|
460
|
+
.secondary-navigation-link {
|
|
520
461
|
display: flex;
|
|
521
462
|
align-items: center;
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
463
|
+
font: inherit;
|
|
464
|
+
color: inherit;
|
|
465
|
+
|
|
466
|
+
.icon {
|
|
467
|
+
height: 1.35em;
|
|
468
|
+
width: 1.35em;
|
|
469
|
+
}
|
|
470
|
+
}
|
|
471
|
+
}
|
|
472
|
+
}
|
|
525
473
|
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
474
|
+
.main-navigation-link {
|
|
475
|
+
.icon {
|
|
476
|
+
height: 1.35em;
|
|
477
|
+
width: 1.35em;
|
|
478
|
+
}
|
|
479
|
+
}
|
|
531
480
|
|
|
532
|
-
|
|
533
|
-
|
|
481
|
+
.overflow-details {
|
|
482
|
+
list-style: none;
|
|
483
|
+
padding: 0;
|
|
484
|
+
margin: 0;
|
|
485
|
+
position: relative;
|
|
486
|
+
cursor: pointer;
|
|
487
|
+
width: fit-content;
|
|
488
|
+
/* overflow: hidden; */
|
|
489
|
+
|
|
490
|
+
transition: all 0.2s ease-in-out;
|
|
491
|
+
|
|
492
|
+
&.visually-hidden {
|
|
493
|
+
opacity: 0;
|
|
494
|
+
visibility: hidden;
|
|
495
|
+
/* width: 0; */
|
|
496
|
+
}
|
|
534
497
|
|
|
498
|
+
.overflow-details-summary {
|
|
499
|
+
--_icon-zoom: 1;
|
|
500
|
+
display: flex;
|
|
501
|
+
align-items: center;
|
|
502
|
+
justify-content: center;
|
|
503
|
+
padding-inline: 5px;
|
|
504
|
+
text-wrap: nowrap;
|
|
535
505
|
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
506
|
+
aspect-ratio: 1;
|
|
507
|
+
border-radius: 4px;
|
|
508
|
+
border: 1px solid #ffffff90;
|
|
509
|
+
outline: 1px solid #ffffff10;
|
|
510
|
+
background-color: Canvas;
|
|
540
511
|
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
outline: 1px solid #ffffff;
|
|
544
|
-
}
|
|
512
|
+
width: 28px;
|
|
513
|
+
overflow: hidden;
|
|
545
514
|
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
515
|
+
|
|
516
|
+
&::-webkit-details-marker,
|
|
517
|
+
&::marker {
|
|
518
|
+
display: none;
|
|
550
519
|
}
|
|
551
520
|
|
|
521
|
+
&:hover {
|
|
522
|
+
--_icon-zoom: 1.2;
|
|
523
|
+
outline: 1px solid #ffffff;
|
|
524
|
+
}
|
|
552
525
|
|
|
553
|
-
.
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
right: 0;
|
|
557
|
-
background-color: #000;
|
|
558
|
-
border: 1px solid #ffffff90;
|
|
559
|
-
border-radius: 8px;
|
|
560
|
-
padding: 12px;
|
|
561
|
-
margin: 0;
|
|
562
|
-
z-index: 999;
|
|
563
|
-
min-width: var(--_overflow-drop-down-width, fit-content);
|
|
564
|
-
|
|
565
|
-
display: grid;
|
|
566
|
-
grid-auto-flow: row;
|
|
567
|
-
gap: 8px;
|
|
526
|
+
.icon {
|
|
527
|
+
scale: var(--_icon-zoom);
|
|
528
|
+
transition: scale 0.2s ease-in-out;
|
|
568
529
|
}
|
|
569
530
|
}
|
|
570
531
|
|
|
532
|
+
|
|
533
|
+
.overflow-details-nav {
|
|
534
|
+
position: absolute;
|
|
535
|
+
top: 135%;
|
|
536
|
+
right: 0;
|
|
537
|
+
background-color: #000;
|
|
538
|
+
border: 1px solid #ffffff90;
|
|
539
|
+
border-radius: 8px;
|
|
540
|
+
padding: 12px;
|
|
541
|
+
margin: 0;
|
|
542
|
+
z-index: 999;
|
|
543
|
+
min-width: var(--_overflow-drop-down-width, fit-content);
|
|
544
|
+
|
|
545
|
+
display: grid;
|
|
546
|
+
grid-auto-flow: row;
|
|
547
|
+
gap: 8px;
|
|
548
|
+
}
|
|
571
549
|
}
|
|
572
550
|
}
|
|
573
551
|
}
|
package/package.json
CHANGED