@neo4j-ndl/base 4.9.16 → 4.9.18

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.
@@ -1767,6 +1767,8 @@ a.ndl-btn {
1767
1767
  --tab-bottom-spacing:var(--space-16);
1768
1768
  --tab-gap:var(--space-12);
1769
1769
  --tab-height:40px;
1770
+ --tab-badge-height:var(--space-24);
1771
+ --tab-badge-min-width:var(--space-20);
1770
1772
  }
1771
1773
  .ndl-tabs.ndl-underline-tab.ndl-small{
1772
1774
  --tab-left-spacing:var(--space-4);
@@ -1776,6 +1778,8 @@ a.ndl-btn {
1776
1778
  --tab-gap:var(--space-12);
1777
1779
  --tab-icon-svg-size:16px;
1778
1780
  --tab-height:32px;
1781
+ --tab-badge-height:var(--space-20);
1782
+ --tab-badge-min-width:18px;
1779
1783
  }
1780
1784
  .ndl-tabs.ndl-filled-tab.ndl-large{
1781
1785
  --tab-left-spacing:var(--space-16);
@@ -1784,6 +1788,8 @@ a.ndl-btn {
1784
1788
  --tab-bottom-spacing:6px;
1785
1789
  --tab-gap:var(--space-8);
1786
1790
  --tab-height:32px;
1791
+ --tab-badge-height:var(--space-24);
1792
+ --tab-badge-min-width:var(--space-20);
1787
1793
  }
1788
1794
  .ndl-tabs.ndl-filled-tab.ndl-small{
1789
1795
  --tab-left-spacing:var(--space-12);
@@ -1792,6 +1798,8 @@ a.ndl-btn {
1792
1798
  --tab-bottom-spacing:var(--space-4);
1793
1799
  --tab-gap:var(--space-4);
1794
1800
  --tab-height:28px;
1801
+ --tab-badge-height:var(--space-20);
1802
+ --tab-badge-min-width:18px;
1795
1803
  }
1796
1804
  .ndl-tabs {
1797
1805
  position:relative;
@@ -1979,7 +1987,7 @@ a.ndl-btn {
1979
1987
  }
1980
1988
  .ndl-tabs .ndl-tab .ndl-tab-badge {
1981
1989
  display:flex;
1982
- height:24px;
1990
+ min-width:20px;
1983
1991
  align-items:center;
1984
1992
  justify-content:center;
1985
1993
  border-radius:4px;
@@ -1988,6 +1996,8 @@ a.ndl-btn {
1988
1996
  padding-right:4px;
1989
1997
  text-align:center;
1990
1998
  color:var(--theme-color-neutral-text-default);
1999
+ height:var(--tab-badge-height);
2000
+ min-width:var(--tab-badge-min-width);
1991
2001
  }
1992
2002
  .ndl-banner.ndl-global {
1993
2003
  padding:16px;
@@ -8723,6 +8733,7 @@ button.ndl-avatar:focus-visible {
8723
8733
  display:flex;
8724
8734
  height:100%;
8725
8735
  width:100%;
8736
+ overflow:hidden;
8726
8737
  }
8727
8738
  .ndl-graph-visualization-container .ndl-graph-visualization {
8728
8739
  position:relative;
@@ -8731,9 +8742,10 @@ button.ndl-avatar:focus-visible {
8731
8742
  background-color:var(--theme-color-neutral-bg-default);
8732
8743
  min-width:25px;
8733
8744
  }
8734
- .ndl-graph-visualization-container .ndl-graph-resizable{
8735
- max-width:min(66%, calc(100% - 325px)) !important;
8736
- }
8745
+ .ndl-graph-visualization-container .ndl-graph-visualization-drawer {
8746
+ padding-top:0px;
8747
+ padding-bottom:0px;
8748
+ }
8737
8749
  .ndl-graph-visualization-container .ndl-graph-visualization-interaction-island {
8738
8750
  position:absolute;
8739
8751
  }
@@ -8763,26 +8775,33 @@ button.ndl-avatar:focus-visible {
8763
8775
  .ndl-graph-visualization-container .ndl-graph-visualization-toggle-sidepanel .ndl-graph-visualization-toggle-icon {
8764
8776
  color:var(--theme-color-neutral-text-weak);
8765
8777
  }
8766
- .ndl-graph-visualization-container .ndl-graph-visualization-sidepanel-content {
8778
+ .ndl-graph-visualization-container .ndl-graph-visualization-sidepanel-wrapper {
8767
8779
  display:grid;
8768
8780
  height:100%;
8769
8781
  gap:8px;
8770
8782
  overflow:auto;
8783
+ padding-left:0px;
8784
+ padding-right:0px;
8771
8785
  padding-top:8px;
8772
8786
  font-family:"Public Sans";
8773
8787
  grid-template-areas:'title closeButton' 'content content';
8774
8788
  grid-template-columns:1fr auto;
8775
8789
  grid-template-rows:36px 1fr;
8776
8790
  }
8777
- .ndl-graph-visualization-container .ndl-graph-visualization-sidepanel-title {
8778
- margin-left:16px;
8791
+ .ndl-graph-visualization-container .ndl-graph-visualization-sidepanel-wrapper .ndl-graph-visualization-sidepanel-title {
8779
8792
  display:flex;
8780
8793
  align-items:center;
8781
- grid-area:title;
8794
+ padding-left:16px;
8795
+ padding-right:16px;
8796
+ padding-bottom:0px;
8797
+ }
8798
+ .ndl-graph-visualization-container .ndl-graph-visualization-sidepanel-wrapper .ndl-graph-visualization-sidepanel-content {
8799
+ padding-left:16px;
8800
+ padding-right:16px;
8782
8801
  }
8783
8802
  .ndl-graph-visualization-container .ndl-graph-visualization-overview-panel {
8784
- margin-left:16px;
8785
- margin-right:16px;
8803
+ margin-left:0px;
8804
+ margin-right:0px;
8786
8805
  display:flex;
8787
8806
  flex-direction:column;
8788
8807
  gap:8px;
@@ -8901,10 +8920,10 @@ button.ndl-avatar:focus-visible {
8901
8920
  width:100%;
8902
8921
  background-color:var(--theme-color-neutral-border-weak);
8903
8922
  }
8904
- .ndl-graph-visualization-container .ndl-grid-area-title{
8923
+ .ndl-graph-visualization-container .ndl-graph-visualization-sidepanel-title{
8905
8924
  grid-area:title;
8906
8925
  }
8907
- .ndl-graph-visualization-container .ndl-grid-area-content{
8926
+ .ndl-graph-visualization-container .ndl-drawer-body-wrapper{
8908
8927
  grid-area:content;
8909
8928
  }
8910
8929
  .ndl-graph-visualization-container .ndl-sidepanel-handle {
@@ -10255,525 +10274,6 @@ button.ndl-avatar:focus-visible {
10255
10274
  gap:12px;
10256
10275
  padding:12px;
10257
10276
  }
10258
- .n-fixed {
10259
- position:fixed;
10260
- }
10261
- .n-absolute {
10262
- position:absolute;
10263
- }
10264
- .n-relative {
10265
- position:relative;
10266
- }
10267
- .n-left-\[auto\] {
10268
- left:auto;
10269
- }
10270
- .n-right-token-4 {
10271
- right:4px;
10272
- }
10273
- .n-top-24 {
10274
- top:96px;
10275
- }
10276
- .n-top-\[110px\] {
10277
- top:110px;
10278
- }
10279
- .n-top-token-4 {
10280
- top:4px;
10281
- }
10282
- .n-isolate {
10283
- isolation:isolate;
10284
- }
10285
- .n-col-start-2 {
10286
- grid-column-start:2;
10287
- }
10288
- .n-col-end-5 {
10289
- grid-column-end:5;
10290
- }
10291
- .n-m-auto {
10292
- margin:auto;
10293
- }
10294
- .n-m-token-32 {
10295
- margin:32px;
10296
- }
10297
- .n-m-token-4 {
10298
- margin:4px;
10299
- }
10300
- .n-mx-auto {
10301
- margin-left:auto;
10302
- margin-right:auto;
10303
- }
10304
- .n-mx-token-12 {
10305
- margin-left:12px;
10306
- margin-right:12px;
10307
- }
10308
- .n-mx-token-16 {
10309
- margin-left:16px;
10310
- margin-right:16px;
10311
- }
10312
- .n-mx-token-24 {
10313
- margin-left:24px;
10314
- margin-right:24px;
10315
- }
10316
- .n-my-12 {
10317
- margin-top:48px;
10318
- margin-bottom:48px;
10319
- }
10320
- .n-my-5 {
10321
- margin-top:20px;
10322
- margin-bottom:20px;
10323
- }
10324
- .n-mb-4 {
10325
- margin-bottom:16px;
10326
- }
10327
- .n-mb-token-8 {
10328
- margin-bottom:8px;
10329
- }
10330
- .n-ml-0 {
10331
- margin-left:0px;
10332
- }
10333
- .n-ml-7 {
10334
- margin-left:28px;
10335
- }
10336
- .n-ml-auto {
10337
- margin-left:auto;
10338
- }
10339
- .n-mr-token-8 {
10340
- margin-right:8px;
10341
- }
10342
- .n-mt-5 {
10343
- margin-top:20px;
10344
- }
10345
- .n-mt-auto {
10346
- margin-top:auto;
10347
- }
10348
- .n-mt-token-16 {
10349
- margin-top:16px;
10350
- }
10351
- .n-mt-token-32 {
10352
- margin-top:32px;
10353
- }
10354
- .n-box-border {
10355
- box-sizing:border-box;
10356
- }
10357
- .n-inline {
10358
- display:inline;
10359
- }
10360
- .n-flex {
10361
- display:flex;
10362
- }
10363
- .n-inline-flex {
10364
- display:inline-flex;
10365
- }
10366
- .n-table {
10367
- display:table;
10368
- }
10369
- .n-table-cell {
10370
- display:table-cell;
10371
- }
10372
- .n-grid {
10373
- display:grid;
10374
- }
10375
- .n-inline-grid {
10376
- display:inline-grid;
10377
- }
10378
- .n-size-36 {
10379
- width:144px;
10380
- height:144px;
10381
- }
10382
- .n-size-4 {
10383
- width:16px;
10384
- height:16px;
10385
- }
10386
- .n-size-5 {
10387
- width:20px;
10388
- height:20px;
10389
- }
10390
- .n-size-7 {
10391
- width:28px;
10392
- height:28px;
10393
- }
10394
- .n-size-full {
10395
- width:100%;
10396
- height:100%;
10397
- }
10398
- .n-size-token-16 {
10399
- width:16px;
10400
- height:16px;
10401
- }
10402
- .n-size-token-24 {
10403
- width:24px;
10404
- height:24px;
10405
- }
10406
- .n-size-token-32 {
10407
- width:32px;
10408
- height:32px;
10409
- }
10410
- .n-size-token-48 {
10411
- width:48px;
10412
- height:48px;
10413
- }
10414
- .n-size-token-64 {
10415
- width:64px;
10416
- height:64px;
10417
- }
10418
- .n-h-10 {
10419
- height:40px;
10420
- }
10421
- .n-h-28 {
10422
- height:112px;
10423
- }
10424
- .n-h-36 {
10425
- height:144px;
10426
- }
10427
- .n-h-48 {
10428
- height:192px;
10429
- }
10430
- .n-h-5 {
10431
- height:20px;
10432
- }
10433
- .n-h-6 {
10434
- height:24px;
10435
- }
10436
- .n-h-7 {
10437
- height:28px;
10438
- }
10439
- .n-h-\[1000px\] {
10440
- height:1000px;
10441
- }
10442
- .n-h-\[100px\] {
10443
- height:100px;
10444
- }
10445
- .n-h-\[200px\] {
10446
- height:200px;
10447
- }
10448
- .n-h-\[290px\] {
10449
- height:290px;
10450
- }
10451
- .n-h-\[500px\] {
10452
- height:500px;
10453
- }
10454
- .n-h-\[700px\] {
10455
- height:700px;
10456
- }
10457
- .n-h-\[calc\(40vh-32px\)\] {
10458
- height:calc(40vh - 32px);
10459
- }
10460
- .n-h-fit {
10461
- height:-moz-fit-content;
10462
- height:fit-content;
10463
- }
10464
- .n-h-full {
10465
- height:100%;
10466
- }
10467
- .n-h-screen {
10468
- height:100vh;
10469
- }
10470
- .n-h-token-12 {
10471
- height:12px;
10472
- }
10473
- .n-h-token-16 {
10474
- height:16px;
10475
- }
10476
- .n-h-token-32 {
10477
- height:32px;
10478
- }
10479
- .n-h-token-48 {
10480
- height:48px;
10481
- }
10482
- .n-min-h-\[700px\] {
10483
- min-height:700px;
10484
- }
10485
- .n-w-1\/2 {
10486
- width:50%;
10487
- }
10488
- .n-w-24 {
10489
- width:96px;
10490
- }
10491
- .n-w-48 {
10492
- width:192px;
10493
- }
10494
- .n-w-60 {
10495
- width:240px;
10496
- }
10497
- .n-w-72 {
10498
- width:288px;
10499
- }
10500
- .n-w-80 {
10501
- width:320px;
10502
- }
10503
- .n-w-\[1200px\] {
10504
- width:1200px;
10505
- }
10506
- .n-w-\[26px\] {
10507
- width:26px;
10508
- }
10509
- .n-w-\[300px\] {
10510
- width:300px;
10511
- }
10512
- .n-w-\[440px\] {
10513
- width:440px;
10514
- }
10515
- .n-w-fit {
10516
- width:-moz-fit-content;
10517
- width:fit-content;
10518
- }
10519
- .n-w-full {
10520
- width:100%;
10521
- }
10522
- .n-w-max {
10523
- width:-moz-max-content;
10524
- width:max-content;
10525
- }
10526
- .n-w-token-32 {
10527
- width:32px;
10528
- }
10529
- .n-max-w-32 {
10530
- max-width:128px;
10531
- }
10532
- .n-max-w-52 {
10533
- max-width:208px;
10534
- }
10535
- .n-max-w-80 {
10536
- max-width:320px;
10537
- }
10538
- .n-max-w-96 {
10539
- max-width:384px;
10540
- }
10541
- .n-max-w-\[1024px\] {
10542
- max-width:1024px;
10543
- }
10544
- .n-max-w-\[1200px\] {
10545
- max-width:1200px;
10546
- }
10547
- .n-max-w-\[600px\] {
10548
- max-width:600px;
10549
- }
10550
- .n-max-w-\[85\%\] {
10551
- max-width:85%;
10552
- }
10553
- .n-max-w-max {
10554
- max-width:-moz-max-content;
10555
- max-width:max-content;
10556
- }
10557
- .n-flex-1 {
10558
- flex:1 1 0%;
10559
- }
10560
- .n-flex-shrink-0 {
10561
- flex-shrink:0;
10562
- }
10563
- .n-shrink-0 {
10564
- flex-shrink:0;
10565
- }
10566
- .n-grow {
10567
- flex-grow:1;
10568
- }
10569
- .n-table-auto {
10570
- table-layout:auto;
10571
- }
10572
- .n-border-separate {
10573
- border-collapse:separate;
10574
- }
10575
- .-n-rotate-180 {
10576
- --tw-rotate:-180deg;
10577
- transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
10578
- }
10579
- .n-rotate-180 {
10580
- --tw-rotate:180deg;
10581
- transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
10582
- }
10583
- .n-transform {
10584
- transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
10585
- }
10586
- .n-cursor-pointer {
10587
- cursor:pointer;
10588
- }
10589
- .n-list-decimal {
10590
- list-style-type:decimal;
10591
- }
10592
- .n-list-disc {
10593
- list-style-type:disc;
10594
- }
10595
- .n-grid-cols-1 {
10596
- grid-template-columns:repeat(1, minmax(0, 1fr));
10597
- }
10598
- .n-grid-cols-3 {
10599
- grid-template-columns:repeat(3, minmax(0, 1fr));
10600
- }
10601
- .n-grid-cols-4 {
10602
- grid-template-columns:repeat(4, minmax(0, 1fr));
10603
- }
10604
- .n-grid-cols-6 {
10605
- grid-template-columns:repeat(6, minmax(0, 1fr));
10606
- }
10607
- .n-grid-cols-\[auto_auto_auto_auto\] {
10608
- grid-template-columns:auto auto auto auto;
10609
- }
10610
- .n-grid-rows-2 {
10611
- grid-template-rows:repeat(2, minmax(0, 1fr));
10612
- }
10613
- .n-flex-row {
10614
- flex-direction:row;
10615
- }
10616
- .n-flex-col {
10617
- flex-direction:column;
10618
- }
10619
- .n-flex-wrap {
10620
- flex-wrap:wrap;
10621
- }
10622
- .n-place-items-center {
10623
- place-items:center;
10624
- }
10625
- .n-items-start {
10626
- align-items:flex-start;
10627
- }
10628
- .n-items-end {
10629
- align-items:flex-end;
10630
- }
10631
- .n-items-center {
10632
- align-items:center;
10633
- }
10634
- .n-justify-start {
10635
- justify-content:flex-start;
10636
- }
10637
- .n-justify-end {
10638
- justify-content:flex-end;
10639
- }
10640
- .n-justify-center {
10641
- justify-content:center;
10642
- }
10643
- .n-justify-between {
10644
- justify-content:space-between;
10645
- }
10646
- .n-justify-items-center {
10647
- justify-items:center;
10648
- }
10649
- .n-gap-1 {
10650
- gap:4px;
10651
- }
10652
- .n-gap-1\.5 {
10653
- gap:6px;
10654
- }
10655
- .n-gap-12 {
10656
- gap:48px;
10657
- }
10658
- .n-gap-2 {
10659
- gap:8px;
10660
- }
10661
- .n-gap-4 {
10662
- gap:16px;
10663
- }
10664
- .n-gap-6 {
10665
- gap:24px;
10666
- }
10667
- .n-gap-9 {
10668
- gap:36px;
10669
- }
10670
- .n-gap-token-12 {
10671
- gap:12px;
10672
- }
10673
- .n-gap-token-16 {
10674
- gap:16px;
10675
- }
10676
- .n-gap-token-2 {
10677
- gap:2px;
10678
- }
10679
- .n-gap-token-32 {
10680
- gap:32px;
10681
- }
10682
- .n-gap-token-4 {
10683
- gap:4px;
10684
- }
10685
- .n-gap-token-48 {
10686
- gap:48px;
10687
- }
10688
- .n-gap-token-6 {
10689
- gap:6px;
10690
- }
10691
- .n-gap-token-64 {
10692
- gap:64px;
10693
- }
10694
- .n-gap-token-8 {
10695
- gap:8px;
10696
- }
10697
- .n-gap-x-token-48 {
10698
- -moz-column-gap:48px;
10699
- column-gap:48px;
10700
- }
10701
- .n-gap-y-token-2 {
10702
- row-gap:2px;
10703
- }
10704
- .n-gap-y-token-32 {
10705
- row-gap:32px;
10706
- }
10707
- .n-gap-y-token-8 {
10708
- row-gap:8px;
10709
- }
10710
- .n-space-x-4 > :not([hidden]) ~ :not([hidden]) {
10711
- --tw-space-x-reverse:0;
10712
- margin-right:calc(16px * var(--tw-space-x-reverse));
10713
- margin-left:calc(16px * calc(1 - var(--tw-space-x-reverse)));
10714
- }
10715
- .n-space-y-3 > :not([hidden]) ~ :not([hidden]) {
10716
- --tw-space-y-reverse:0;
10717
- margin-top:calc(12px * calc(1 - var(--tw-space-y-reverse)));
10718
- margin-bottom:calc(12px * var(--tw-space-y-reverse));
10719
- }
10720
- .n-self-center {
10721
- align-self:center;
10722
- }
10723
- .n-justify-self-end {
10724
- justify-self:end;
10725
- }
10726
- .n-overflow-auto {
10727
- overflow:auto;
10728
- }
10729
- .n-overflow-hidden {
10730
- overflow:hidden;
10731
- }
10732
- .n-overflow-y-auto {
10733
- overflow-y:auto;
10734
- }
10735
- .n-overflow-x-scroll {
10736
- overflow-x:scroll;
10737
- }
10738
- .n-whitespace-nowrap {
10739
- white-space:nowrap;
10740
- }
10741
- .n-break-all {
10742
- word-break:break-all;
10743
- }
10744
- .n-rounded-2xl {
10745
- border-radius:16px;
10746
- }
10747
- .n-rounded-lg {
10748
- border-radius:8px;
10749
- }
10750
- .n-rounded-md {
10751
- border-radius:6px;
10752
- }
10753
- .n-rounded-sm {
10754
- border-radius:4px;
10755
- }
10756
- .n-rounded-xl {
10757
- border-radius:12px;
10758
- }
10759
- .n-border {
10760
- border-width:1px;
10761
- }
10762
- .n-border-2 {
10763
- border-width:2px;
10764
- }
10765
- .n-border-\[0\.5px\] {
10766
- border-width:0.5px;
10767
- }
10768
- .n-border-b {
10769
- border-bottom-width:1px;
10770
- }
10771
- .n-border-b-2 {
10772
- border-bottom-width:2px;
10773
- }
10774
- .n-border-dashed {
10775
- border-style:dashed;
10776
- }
10777
10277
  .n-border-danger-bg-status {
10778
10278
  border-color:var(--theme-color-danger-bg-status);
10779
10279
  }
@@ -20269,12 +19769,6 @@ button.ndl-avatar:focus-visible {
20269
19769
  .n-border-warning-text {
20270
19770
  border-color:var(--theme-color-warning-text);
20271
19771
  }
20272
- .n-bg-baltic-10 {
20273
- background-color:#e7fafbff;
20274
- }
20275
- .n-bg-baltic-40 {
20276
- background-color:#4c99a4ff;
20277
- }
20278
19772
  .n-bg-danger-bg-status {
20279
19773
  background-color:var(--theme-color-danger-bg-status);
20280
19774
  }
@@ -24487,9 +23981,6 @@ button.ndl-avatar:focus-visible {
24487
23981
  .n-bg-discovery-text {
24488
23982
  background-color:var(--theme-color-discovery-text);
24489
23983
  }
24490
- .n-bg-hibiscus-35 {
24491
- background-color:#e84e2cff;
24492
- }
24493
23984
  .n-bg-light-danger-bg-status {
24494
23985
  background-color:#e84e2cff;
24495
23986
  }
@@ -29752,9 +29243,6 @@ button.ndl-avatar:focus-visible {
29752
29243
  .n-bg-success-text {
29753
29244
  background-color:var(--theme-color-success-text);
29754
29245
  }
29755
- .n-bg-transparent {
29756
- background-color:transparent;
29757
- }
29758
29246
  .n-bg-warning-bg-status {
29759
29247
  background-color:var(--theme-color-warning-bg-status);
29760
29248
  }
@@ -29776,180 +29264,6 @@ button.ndl-avatar:focus-visible {
29776
29264
  .n-bg-warning-text {
29777
29265
  background-color:var(--theme-color-warning-text);
29778
29266
  }
29779
- .n-bg-cover {
29780
- background-size:cover;
29781
- }
29782
- .n-bg-center {
29783
- background-position:center;
29784
- }
29785
- .n-bg-no-repeat {
29786
- background-repeat:no-repeat;
29787
- }
29788
- .n-fill-danger-bg-strong {
29789
- fill:var(--theme-color-danger-bg-strong);
29790
- }
29791
- .n-fill-neutral-bg-stronger {
29792
- fill:var(--theme-color-neutral-bg-stronger);
29793
- }
29794
- .n-fill-neutral-bg-weak {
29795
- fill:var(--theme-color-neutral-bg-weak);
29796
- }
29797
- .n-fill-primary-bg-strong {
29798
- fill:var(--theme-color-primary-bg-strong);
29799
- }
29800
- .n-stroke-primary-bg-strong {
29801
- stroke:var(--theme-color-primary-bg-strong);
29802
- }
29803
- .n-p-0 {
29804
- padding:0px;
29805
- }
29806
- .n-p-14 {
29807
- padding:56px;
29808
- }
29809
- .n-p-2 {
29810
- padding:8px;
29811
- }
29812
- .n-p-3 {
29813
- padding:12px;
29814
- }
29815
- .n-p-4 {
29816
- padding:16px;
29817
- }
29818
- .n-p-8 {
29819
- padding:32px;
29820
- }
29821
- .n-p-token-16 {
29822
- padding:16px;
29823
- }
29824
- .n-p-token-24 {
29825
- padding:24px;
29826
- }
29827
- .n-p-token-32 {
29828
- padding:32px;
29829
- }
29830
- .n-p-token-4 {
29831
- padding:4px;
29832
- }
29833
- .n-p-token-8 {
29834
- padding:8px;
29835
- }
29836
- .n-px-10 {
29837
- padding-left:40px;
29838
- padding-right:40px;
29839
- }
29840
- .n-px-4 {
29841
- padding-left:16px;
29842
- padding-right:16px;
29843
- }
29844
- .n-px-token-12 {
29845
- padding-left:12px;
29846
- padding-right:12px;
29847
- }
29848
- .n-px-token-16 {
29849
- padding-left:16px;
29850
- padding-right:16px;
29851
- }
29852
- .n-px-token-32 {
29853
- padding-left:32px;
29854
- padding-right:32px;
29855
- }
29856
- .n-px-token-4 {
29857
- padding-left:4px;
29858
- padding-right:4px;
29859
- }
29860
- .n-px-token-8 {
29861
- padding-left:8px;
29862
- padding-right:8px;
29863
- }
29864
- .n-py-token-16 {
29865
- padding-top:16px;
29866
- padding-bottom:16px;
29867
- }
29868
- .n-py-token-2 {
29869
- padding-top:2px;
29870
- padding-bottom:2px;
29871
- }
29872
- .n-py-token-4 {
29873
- padding-top:4px;
29874
- padding-bottom:4px;
29875
- }
29876
- .n-py-token-8 {
29877
- padding-top:8px;
29878
- padding-bottom:8px;
29879
- }
29880
- .n-pb-1 {
29881
- padding-bottom:4px;
29882
- }
29883
- .n-pb-4 {
29884
- padding-bottom:16px;
29885
- }
29886
- .n-pb-token-16 {
29887
- padding-bottom:16px;
29888
- }
29889
- .n-pb-token-4 {
29890
- padding-bottom:4px;
29891
- }
29892
- .n-pl-token-4 {
29893
- padding-left:4px;
29894
- }
29895
- .n-pl-token-8 {
29896
- padding-left:8px;
29897
- }
29898
- .n-pr-token-4 {
29899
- padding-right:4px;
29900
- }
29901
- .n-pt-4 {
29902
- padding-top:16px;
29903
- }
29904
- .n-pt-token-64 {
29905
- padding-top:64px;
29906
- }
29907
- .n-text-left {
29908
- text-align:left;
29909
- }
29910
- .n-text-center {
29911
- text-align:center;
29912
- }
29913
- .n-align-top {
29914
- vertical-align:top;
29915
- }
29916
- .n-font-sans {
29917
- font-family:"Public Sans";
29918
- }
29919
- .n-text-xs {
29920
- font-size:0.75rem;
29921
- line-height:1rem;
29922
- }
29923
- .n-font-bold {
29924
- font-weight:700;
29925
- }
29926
- .n-font-light {
29927
- font-weight:300;
29928
- }
29929
- .n-font-normal {
29930
- font-weight:400;
29931
- }
29932
- .n-font-semibold {
29933
- font-weight:600;
29934
- }
29935
- .n-uppercase {
29936
- text-transform:uppercase;
29937
- }
29938
- .n-lowercase {
29939
- text-transform:lowercase;
29940
- }
29941
- .n-capitalize {
29942
- text-transform:capitalize;
29943
- }
29944
- .n-italic {
29945
- font-style:italic;
29946
- }
29947
- .n-tracking-wide {
29948
- letter-spacing:0.025em;
29949
- }
29950
- .n-text-baltic-50 {
29951
- color:#0a6190ff;
29952
- }
29953
29267
  .n-text-danger-bg-status {
29954
29268
  color:var(--theme-color-danger-bg-status);
29955
29269
  }
@@ -34162,9 +33476,6 @@ button.ndl-avatar:focus-visible {
34162
33476
  .n-text-discovery-text {
34163
33477
  color:var(--theme-color-discovery-text);
34164
33478
  }
34165
- .n-text-highlights-periwinkle {
34166
- color:#6a82ffff;
34167
- }
34168
33479
  .n-text-light-danger-bg-status {
34169
33480
  color:#e84e2cff;
34170
33481
  }
@@ -39448,35 +38759,6 @@ button.ndl-avatar:focus-visible {
39448
38759
  .n-text-warning-text {
39449
38760
  color:var(--theme-color-warning-text);
39450
38761
  }
39451
- .n-shadow-light-raised {
39452
- --tw-shadow:0px 1px 2px 0px rgb(from #1a1b1dff r g b / 0.18);
39453
- --tw-shadow-colored:0px 1px 2px 0px var(--tw-shadow-color);
39454
- box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
39455
- }
39456
- .n-shadow-overlay {
39457
- --tw-shadow:var(--theme-shadow-overlay);
39458
- --tw-shadow-colored:var(--theme-shadow-overlay);
39459
- box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
39460
- }
39461
- .n-shadow-raised {
39462
- --tw-shadow:var(--theme-shadow-raised);
39463
- --tw-shadow-colored:var(--theme-shadow-raised);
39464
- box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
39465
- }
39466
- .n-transition-all {
39467
- transition-property:all;
39468
- transition-timing-function:cubic-bezier(0.42, 0, 0.58, 1);
39469
- transition-duration:100ms;
39470
- }
39471
- .n-duration-slow {
39472
- transition-duration:250ms;
39473
- }
39474
- .n-transition-quick {
39475
- transition:100ms cubic-bezier(0.42, 0, 0.58, 1) 0ms;
39476
- }
39477
- .n-duration-slow {
39478
- transition-duration:250ms;
39479
- }
39480
38762
  body,
39481
38763
  html,
39482
38764
  :host{
@@ -39489,18 +38771,6 @@ html,
39489
38771
  outline-style:solid;
39490
38772
  outline-color:var(--theme-color-primary-focus);
39491
38773
  }
39492
- .first\:n-rounded-t-sm:first-child {
39493
- border-top-left-radius:4px;
39494
- border-top-right-radius:4px;
39495
- }
39496
- .last\:n-rounded-b-sm:last-child {
39497
- border-bottom-right-radius:4px;
39498
- border-bottom-left-radius:4px;
39499
- }
39500
- .hover\:n-rotate-12:hover {
39501
- --tw-rotate:12deg;
39502
- transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
39503
- }
39504
38774
  .hover\:n-border-danger-bg-status:hover {
39505
38775
  border-color:var(--theme-color-danger-bg-status);
39506
38776
  }
@@ -67986,15 +67256,6 @@ html,
67986
67256
  .hover\:n-text-warning-text:hover {
67987
67257
  color:var(--theme-color-warning-text);
67988
67258
  }
67989
- .focus-visible\:n-outline-2:focus-visible {
67990
- outline-width:2px;
67991
- }
67992
- .focus-visible\:n-outline-offset-\[3px\]:focus-visible {
67993
- outline-offset:3px;
67994
- }
67995
- .focus-visible\:n-outline-primary-focus:focus-visible {
67996
- outline-color:var(--theme-color-primary-focus);
67997
- }
67998
67259
  .active\:n-bg-danger-bg-status:active {
67999
67260
  background-color:var(--theme-color-danger-bg-status);
68000
67261
  }
@@ -77490,32 +76751,3 @@ html,
77490
76751
  .active\:n-bg-warning-text:active {
77491
76752
  background-color:var(--theme-color-warning-text);
77492
76753
  }
77493
- @media (min-width: 864px) {
77494
- .sm\:n-grid-cols-2 {
77495
- grid-template-columns:repeat(2, minmax(0, 1fr));
77496
- }
77497
- .sm\:n-space-x-4 > :not([hidden]) ~ :not([hidden]) {
77498
- --tw-space-x-reverse:0;
77499
- margin-right:calc(16px * var(--tw-space-x-reverse));
77500
- margin-left:calc(16px * calc(1 - var(--tw-space-x-reverse)));
77501
- }
77502
- .sm\:n-space-y-0 > :not([hidden]) ~ :not([hidden]) {
77503
- --tw-space-y-reverse:0;
77504
- margin-top:calc(0px * calc(1 - var(--tw-space-y-reverse)));
77505
- margin-bottom:calc(0px * var(--tw-space-y-reverse));
77506
- }
77507
- }
77508
- @media (min-width: 1024px) {
77509
- .md\:n-w-2\/12 {
77510
- width:16.666667%;
77511
- }
77512
- .md\:n-w-2\/4 {
77513
- width:50%;
77514
- }
77515
- .md\:n-grid-cols-5 {
77516
- grid-template-columns:repeat(5, minmax(0, 1fr));
77517
- }
77518
- .md\:n-bg-baltic-50 {
77519
- background-color:#0a6190ff;
77520
- }
77521
- }