@nordcode/ui 1.2.0 → 1.3.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.
- package/CHANGELOG.md +61 -49
- package/out/bundle.css +26 -29
- package/out/bundle_configless.css +20 -24
- package/out/complete.css +60 -62
- package/out/complete_configless.css +54 -57
- package/package.json +1 -1
- package/src/styles/components/alerts.css +2 -2
- package/src/styles/components/badges.css +1 -1
- package/src/styles/components/breadcrumbs.css +1 -1
- package/src/styles/components/buttons.css +59 -46
- package/src/styles/components/card.css +2 -1
- package/src/styles/components/dialogs.css +11 -8
- package/src/styles/components/forms.css +12 -6
- package/src/styles/components/inputs/base.css +75 -65
- package/src/styles/components/inputs/fields.css +11 -11
- package/src/styles/components/inputs/segmented.css +23 -13
- package/src/styles/components/inputs/tag-select.css +10 -6
- package/src/styles/components/lists.css +3 -3
- package/src/styles/components/notifications.css +8 -6
- package/src/styles/config/config.css +6 -5
- package/src/styles/utils/base.css +18 -18
- package/src/styles/utils/layouts.css +31 -20
- package/src/styles/utils/reset.css +1 -1
package/out/complete.css
CHANGED
|
@@ -12,14 +12,15 @@
|
|
|
12
12
|
--line-height-base: 1.55;
|
|
13
13
|
--line-height-small: 1.1;
|
|
14
14
|
--tracking-base: normal;
|
|
15
|
-
--tracking-tight: -.
|
|
16
|
-
--tracking-wide: .
|
|
17
|
-
--measure-large:
|
|
18
|
-
--measure-base:
|
|
19
|
-
--measure-small:
|
|
15
|
+
--tracking-tight: -.02em;
|
|
16
|
+
--tracking-wide: .03em;
|
|
17
|
+
--measure-large: 56em;
|
|
18
|
+
--measure-base: 44em;
|
|
19
|
+
--measure-small: 28em;
|
|
20
20
|
--font-size-smallest: max(.75rem, 12px);
|
|
21
21
|
--font-size-small: max(.875rem, 14px);
|
|
22
22
|
--font-size-base: 1rem;
|
|
23
|
+
--font-size-medium: 1.125rem;
|
|
23
24
|
--font-size-large: 1.25rem;
|
|
24
25
|
--font-size-largest: 1.5rem;
|
|
25
26
|
--font-size-display: 3.5rem;
|
|
@@ -330,7 +331,7 @@
|
|
|
330
331
|
|
|
331
332
|
:where(:not(:active):focus-visible) {
|
|
332
333
|
outline: var(--border-width-medium) solid var(--color-brand-primary-base);
|
|
333
|
-
outline-offset:
|
|
334
|
+
outline-offset: .5em;
|
|
334
335
|
}
|
|
335
336
|
|
|
336
337
|
:where(:focus:not(:focus-visible)) {
|
|
@@ -460,7 +461,7 @@
|
|
|
460
461
|
grid-column: 1 / 1;
|
|
461
462
|
min-block-size: 100%;
|
|
462
463
|
padding-block-end: 0;
|
|
463
|
-
padding-inline-end:
|
|
464
|
+
padding-inline-end: 1em;
|
|
464
465
|
}
|
|
465
466
|
|
|
466
467
|
:where(dt):not(:last-of-type) {
|
|
@@ -496,19 +497,19 @@
|
|
|
496
497
|
:where(figcaption) {
|
|
497
498
|
color: var(--color-surface-subtle);
|
|
498
499
|
background-color: var(--color-text-base);
|
|
499
|
-
padding: .
|
|
500
|
+
padding: .35em .5em;
|
|
500
501
|
display: block;
|
|
501
502
|
}
|
|
502
503
|
|
|
503
504
|
:where(details) {
|
|
504
|
-
--p-x-details:
|
|
505
|
-
--p-y-details:
|
|
505
|
+
--p-x-details: 1em;
|
|
506
|
+
--p-y-details: 1em;
|
|
506
507
|
--b-r-details: var(--border-radius-medium);
|
|
507
508
|
background-color: var(--color-surface-muted);
|
|
508
509
|
border-radius: var(--b-r-details);
|
|
509
|
-
border: var(--border-width-thin) solid var(--color-border-base);
|
|
510
510
|
padding: var(--p-y-details) var(--p-x-details);
|
|
511
511
|
inline-size: 100%;
|
|
512
|
+
box-shadow: 0 0 0 var(--border-width-thin) var(--color-border-base);
|
|
512
513
|
}
|
|
513
514
|
|
|
514
515
|
:where(details) > summary {
|
|
@@ -517,7 +518,7 @@
|
|
|
517
518
|
font-weight: var(--font-weight-heading);
|
|
518
519
|
border-radius: var(--b-r-details);
|
|
519
520
|
padding: var(--p-y-details) var(--p-x-details);
|
|
520
|
-
margin: calc(-1 * var(--p-y-details)) calc(-1 * var(--p-x-details)
|
|
521
|
+
margin: calc(-1 * var(--p-y-details)) calc(-1 * var(--p-x-details));
|
|
521
522
|
}
|
|
522
523
|
|
|
523
524
|
:where(details)[open] > summary {
|
|
@@ -534,7 +535,7 @@
|
|
|
534
535
|
font-size: var(--font-size-large);
|
|
535
536
|
margin-inline: 0;
|
|
536
537
|
padding: 0;
|
|
537
|
-
padding-inline-start:
|
|
538
|
+
padding-inline-start: 1em;
|
|
538
539
|
position: relative;
|
|
539
540
|
}
|
|
540
541
|
|
|
@@ -561,7 +562,7 @@
|
|
|
561
562
|
|
|
562
563
|
:is(.note, blockquote) cite:before {
|
|
563
564
|
content: "—";
|
|
564
|
-
margin-inline-end: .
|
|
565
|
+
margin-inline-end: .5em;
|
|
565
566
|
}
|
|
566
567
|
|
|
567
568
|
cite {
|
|
@@ -624,7 +625,7 @@
|
|
|
624
625
|
:where(a, .nc-link) {
|
|
625
626
|
color: inherit;
|
|
626
627
|
font-family: var(--font-family-link);
|
|
627
|
-
text-underline-offset: .
|
|
628
|
+
text-underline-offset: .35em;
|
|
628
629
|
font-weight: var(--font-weight-default);
|
|
629
630
|
cursor: pointer;
|
|
630
631
|
letter-spacing: var(--tracking-tight);
|
|
@@ -675,7 +676,7 @@
|
|
|
675
676
|
line-height: inherit;
|
|
676
677
|
-webkit-box-decoration-break: clone;
|
|
677
678
|
box-decoration-break: clone;
|
|
678
|
-
padding-inline: .
|
|
679
|
+
padding-inline: .25em;
|
|
679
680
|
}
|
|
680
681
|
|
|
681
682
|
:where(code, kbd, var) {
|
|
@@ -689,7 +690,7 @@
|
|
|
689
690
|
word-spacing: normal;
|
|
690
691
|
overflow-wrap: normal;
|
|
691
692
|
max-inline-size: fit-content;
|
|
692
|
-
padding-block: .
|
|
693
|
+
padding-block: .2em;
|
|
693
694
|
font-style: normal;
|
|
694
695
|
}
|
|
695
696
|
|
|
@@ -716,7 +717,7 @@
|
|
|
716
717
|
border-radius: var(--border-radius-medium);
|
|
717
718
|
background: var(--color-surface-subtle);
|
|
718
719
|
-webkit-overflow-scrolling: touch;
|
|
719
|
-
padding:
|
|
720
|
+
padding: 1em;
|
|
720
721
|
overflow-x: auto;
|
|
721
722
|
}
|
|
722
723
|
|
|
@@ -757,7 +758,7 @@
|
|
|
757
758
|
line-height: var(--line-height-small);
|
|
758
759
|
white-space: nowrap;
|
|
759
760
|
font-variant-numeric: tabular-nums;
|
|
760
|
-
padding: .
|
|
761
|
+
padding: .5em;
|
|
761
762
|
}
|
|
762
763
|
|
|
763
764
|
:where(td), :where(thead th) {
|
|
@@ -827,15 +828,11 @@
|
|
|
827
828
|
}
|
|
828
829
|
|
|
829
830
|
:where(ul, ol) {
|
|
830
|
-
padding-inline-start:
|
|
831
|
-
}
|
|
832
|
-
|
|
833
|
-
:where(li + li) {
|
|
834
|
-
margin-block-start: .5lh;
|
|
831
|
+
padding-inline-start: 1em;
|
|
835
832
|
}
|
|
836
833
|
|
|
837
|
-
:where(li > :is(ul, ol)) {
|
|
838
|
-
margin-block-start: .
|
|
834
|
+
:where(li + li), :where(li > :is(ul, ol)) {
|
|
835
|
+
margin-block-start: .5em;
|
|
839
836
|
}
|
|
840
837
|
|
|
841
838
|
@supports (font-variant-position: sub) {
|
|
@@ -869,7 +866,7 @@
|
|
|
869
866
|
content: close-quote;
|
|
870
867
|
content: "“";
|
|
871
868
|
content: "”";
|
|
872
|
-
margin-inline-start: -.
|
|
869
|
+
margin-inline-start: -.5em;
|
|
873
870
|
}
|
|
874
871
|
|
|
875
872
|
:where(.quoted p) {
|
|
@@ -962,11 +959,11 @@
|
|
|
962
959
|
}
|
|
963
960
|
|
|
964
961
|
:where(.nc-flow) > * {
|
|
965
|
-
max-inline-size: var(--flow-base-meassure,
|
|
962
|
+
max-inline-size: var(--flow-base-meassure, 36em);
|
|
966
963
|
}
|
|
967
964
|
|
|
968
965
|
:where(.nc-flow) > :is(h1, h2, h3, h4, h5, h6) {
|
|
969
|
-
max-inline-size: var(--flow-headline-meassure,
|
|
966
|
+
max-inline-size: var(--flow-headline-meassure, 16em);
|
|
970
967
|
--flow-gap: 1.5lh;
|
|
971
968
|
}
|
|
972
969
|
|
|
@@ -1444,7 +1441,7 @@
|
|
|
1444
1441
|
:where(.nc-alert) {
|
|
1445
1442
|
background: var(--surface);
|
|
1446
1443
|
color: var(--text);
|
|
1447
|
-
gap:
|
|
1444
|
+
gap: .75em;
|
|
1448
1445
|
}
|
|
1449
1446
|
|
|
1450
1447
|
:where(.nc-alert) > .nc-icon {
|
|
@@ -1471,7 +1468,7 @@
|
|
|
1471
1468
|
border-radius: var(--border-radius-small);
|
|
1472
1469
|
background: var(--surface, transparent);
|
|
1473
1470
|
inline-size: max-content;
|
|
1474
|
-
padding: .
|
|
1471
|
+
padding: .5em;
|
|
1475
1472
|
line-height: 1;
|
|
1476
1473
|
}
|
|
1477
1474
|
}
|
|
@@ -1496,7 +1493,7 @@
|
|
|
1496
1493
|
color: inherit;
|
|
1497
1494
|
content: "›";
|
|
1498
1495
|
font-size: inherit;
|
|
1499
|
-
padding-inline:
|
|
1496
|
+
padding-inline: .5em;
|
|
1500
1497
|
}
|
|
1501
1498
|
|
|
1502
1499
|
:where(.nc-breadcrumb-link) {
|
|
@@ -1629,7 +1626,7 @@
|
|
|
1629
1626
|
}
|
|
1630
1627
|
|
|
1631
1628
|
:where(button:not([class]), button[type]:not([class]), input[type="button"]:not([class]), input[type="submit"]:not([class]), input[type="reset"]:not([class]), .nc-button).-small {
|
|
1632
|
-
--_button-padding-inline:
|
|
1629
|
+
--_button-padding-inline: .5em;
|
|
1633
1630
|
min-block-size: var(--button-height-small);
|
|
1634
1631
|
}
|
|
1635
1632
|
|
|
@@ -1638,8 +1635,8 @@
|
|
|
1638
1635
|
}
|
|
1639
1636
|
|
|
1640
1637
|
:where(button:not([class]), button[type]:not([class]), input[type="button"]:not([class]), input[type="submit"]:not([class]), input[type="reset"]:not([class]), .nc-button).-offset {
|
|
1641
|
-
--_button-offset-distance: var(--button-offset-distance, -.
|
|
1642
|
-
--_button-offset-distance-hover: var(--button-offset-distance-hover, -.
|
|
1638
|
+
--_button-offset-distance: var(--button-offset-distance, -.15em);
|
|
1639
|
+
--_button-offset-distance-hover: var(--button-offset-distance-hover, -.075em);
|
|
1643
1640
|
--_button-transform: translate(var(--_button-offset-distance), var(--_button-offset-distance));
|
|
1644
1641
|
--_button-hover-transform: translate(var(--_button-offset-distance-hover), var(--_button-offset-distance-hover));
|
|
1645
1642
|
--button-box-shadow: calc(var(--_button-offset-distance) / -2) calc(var(--_button-offset-distance) / -2) 0 0 var(--shadow-color), calc(var(--_button-offset-distance) * -1) calc(var(--_button-offset-distance) * -1) 0 0 var(--shadow-color), calc(var(--_button-offset-distance) * -1) calc(var(--_button-offset-distance) * -1) calc(var(--_button-offset-distance) * -2) 0 var(--shadow-color);
|
|
@@ -1654,7 +1651,7 @@
|
|
|
1654
1651
|
}
|
|
1655
1652
|
|
|
1656
1653
|
:where(button:not([class]), button[type]:not([class]), input[type="button"]:not([class]), input[type="submit"]:not([class]), input[type="reset"]:not([class]), .nc-button):has(svg) {
|
|
1657
|
-
gap: .
|
|
1654
|
+
gap: .25em;
|
|
1658
1655
|
}
|
|
1659
1656
|
|
|
1660
1657
|
:where(button:not([class]), button[type]:not([class]), input[type="button"]:not([class]), input[type="submit"]:not([class]), input[type="reset"]:not([class]), .nc-button)[aria-label], :where(button:not([class]), button[type]:not([class]), input[type="button"]:not([class]), input[type="submit"]:not([class]), input[type="reset"]:not([class]), .nc-button).-icon {
|
|
@@ -1695,7 +1692,7 @@
|
|
|
1695
1692
|
border: var(--_input-border);
|
|
1696
1693
|
min-block-size: var(--button-height-base);
|
|
1697
1694
|
border-radius: var(--_input-border-radius);
|
|
1698
|
-
padding-inline: 0
|
|
1695
|
+
padding-inline: 0 .5em;
|
|
1699
1696
|
}
|
|
1700
1697
|
|
|
1701
1698
|
:where(input[type="file"]:not([class]))::-webkit-file-upload-button {
|
|
@@ -1709,7 +1706,7 @@
|
|
|
1709
1706
|
border-inline-end: var(--border-width-thin) solid var(--color-border-base);
|
|
1710
1707
|
border-start-end-radius: 0;
|
|
1711
1708
|
border-end-end-radius: 0;
|
|
1712
|
-
margin-inline-end:
|
|
1709
|
+
margin-inline-end: .5em;
|
|
1713
1710
|
inset-block-start: 0;
|
|
1714
1711
|
inset-inline-start: 0;
|
|
1715
1712
|
transform: none;
|
|
@@ -1726,7 +1723,7 @@
|
|
|
1726
1723
|
border-inline-end: var(--border-width-thin) solid var(--color-border-base);
|
|
1727
1724
|
border-start-end-radius: 0;
|
|
1728
1725
|
border-end-end-radius: 0;
|
|
1729
|
-
margin-inline-end:
|
|
1726
|
+
margin-inline-end: .5em;
|
|
1730
1727
|
inset-block-start: 0;
|
|
1731
1728
|
inset-inline-start: 0;
|
|
1732
1729
|
transform: none;
|
|
@@ -1759,7 +1756,7 @@
|
|
|
1759
1756
|
padding-block: var(--_card-padding-block);
|
|
1760
1757
|
color: var(--_card-color);
|
|
1761
1758
|
appearance: none;
|
|
1762
|
-
border:
|
|
1759
|
+
border: var(--border-width-thin) solid var(--_card-border-color);
|
|
1763
1760
|
background-color: var(--_card-background-color);
|
|
1764
1761
|
border-radius: var(--_card-border-radius);
|
|
1765
1762
|
box-shadow: var(--_card-shadow);
|
|
@@ -1809,6 +1806,7 @@
|
|
|
1809
1806
|
}
|
|
1810
1807
|
|
|
1811
1808
|
:where(.nc-clickable-card) a[data-link="main"] {
|
|
1809
|
+
font: inherit;
|
|
1812
1810
|
text-decoration: none;
|
|
1813
1811
|
}
|
|
1814
1812
|
|
|
@@ -1845,7 +1843,7 @@
|
|
|
1845
1843
|
max-inline-size: var(--_dialog-max-inline-size);
|
|
1846
1844
|
background: var(--color-surface-base);
|
|
1847
1845
|
border-radius: var(--_dialog-radius);
|
|
1848
|
-
overflow-clip-margin:
|
|
1846
|
+
overflow-clip-margin: 1em;
|
|
1849
1847
|
pointer-events: all;
|
|
1850
1848
|
max-block-size: 100dvh;
|
|
1851
1849
|
margin: auto 0;
|
|
@@ -1885,7 +1883,7 @@
|
|
|
1885
1883
|
block-size: max-content;
|
|
1886
1884
|
inline-size: 100%;
|
|
1887
1885
|
max-block-size: var(--_dialog-max-block-size);
|
|
1888
|
-
overflow-clip-margin:
|
|
1886
|
+
overflow-clip-margin: 1em;
|
|
1889
1887
|
grid-template: "header header"
|
|
1890
1888
|
"content content" 1fr
|
|
1891
1889
|
"footer footer"
|
|
@@ -1982,7 +1980,7 @@
|
|
|
1982
1980
|
:where(.nc-form-hint) {
|
|
1983
1981
|
font-size: var(--font-size-large);
|
|
1984
1982
|
color: var(--color-text-muted);
|
|
1985
|
-
margin-block: .
|
|
1983
|
+
margin-block: .75em;
|
|
1986
1984
|
}
|
|
1987
1985
|
|
|
1988
1986
|
:where(fieldset:not([class]), .nc-fieldset) {
|
|
@@ -2000,12 +1998,12 @@
|
|
|
2000
1998
|
}
|
|
2001
1999
|
|
|
2002
2000
|
:where(legend:not([class]), .nc-legend) + * {
|
|
2003
|
-
margin-block-start: var(--nc-legend-spacing,
|
|
2001
|
+
margin-block-start: var(--nc-legend-spacing, 1em);
|
|
2004
2002
|
}
|
|
2005
2003
|
|
|
2006
2004
|
:where(:is(fieldset:not([class]), .nc-fieldset):has(:is(.nc-legend + .nc-hint, legend:not([class]) + .nc-hint)) > :is(legend:not([class]), .nc-legend) + .nc-hint) {
|
|
2007
|
-
--nc-legend-spacing: .
|
|
2008
|
-
margin-block-end: .
|
|
2005
|
+
--nc-legend-spacing: .2em;
|
|
2006
|
+
margin-block-end: .75em;
|
|
2009
2007
|
}
|
|
2010
2008
|
}
|
|
2011
2009
|
|
|
@@ -2185,9 +2183,9 @@
|
|
|
2185
2183
|
|
|
2186
2184
|
:where(select:not([class]), .nc-select) {
|
|
2187
2185
|
background-image: var(--triangle-down-url);
|
|
2188
|
-
background-position: right
|
|
2189
|
-
background-size:
|
|
2190
|
-
padding-inline-end:
|
|
2186
|
+
background-position: right .5em top 50%;
|
|
2187
|
+
background-size: 1em .75em;
|
|
2188
|
+
padding-inline-end: 1.75em;
|
|
2191
2189
|
}
|
|
2192
2190
|
|
|
2193
2191
|
:where(textarea:not([class]), .nc-textarea) {
|
|
@@ -2322,11 +2320,11 @@
|
|
|
2322
2320
|
--_tag-select-checked-text-color: var(--tag-select-checked-text-color, var(--color-brand-primary-contrast));
|
|
2323
2321
|
--_tag-select-checked-surface-color: var(--tag-select-checked-surface-color, var(--color-brand-primary-base));
|
|
2324
2322
|
--_tag-select-border-radius: var(--tag-select-border-radius, var(--_input-border-radius));
|
|
2325
|
-
--nc-legend-spacing: .
|
|
2323
|
+
--nc-legend-spacing: .35em;
|
|
2326
2324
|
}
|
|
2327
2325
|
|
|
2328
2326
|
:where(.nc-tag-select-field):focus-within:has(:focus-visible) {
|
|
2329
|
-
outline-offset:
|
|
2327
|
+
outline-offset: .5em;
|
|
2330
2328
|
outline: var(--_input-outline);
|
|
2331
2329
|
border-radius: var(--_tag-select-border-radius);
|
|
2332
2330
|
}
|
|
@@ -2363,7 +2361,7 @@
|
|
|
2363
2361
|
max-inline-size: var(--input-field-max-inline-size);
|
|
2364
2362
|
grid-template-columns: minmax(0, 1fr);
|
|
2365
2363
|
place-items: start;
|
|
2366
|
-
gap: .
|
|
2364
|
+
gap: .35em;
|
|
2367
2365
|
display: grid;
|
|
2368
2366
|
}
|
|
2369
2367
|
|
|
@@ -2372,7 +2370,7 @@
|
|
|
2372
2370
|
}
|
|
2373
2371
|
|
|
2374
2372
|
:where(.nc-input-field) > .nc-cluster {
|
|
2375
|
-
gap:
|
|
2373
|
+
gap: .5em;
|
|
2376
2374
|
}
|
|
2377
2375
|
|
|
2378
2376
|
:where(.nc-input-error) {
|
|
@@ -2393,7 +2391,7 @@
|
|
|
2393
2391
|
align-items: center;
|
|
2394
2392
|
block-size: 1em;
|
|
2395
2393
|
inline-size: 1em;
|
|
2396
|
-
margin-inline-end:
|
|
2394
|
+
margin-inline-end: .5em;
|
|
2397
2395
|
display: inline-flex;
|
|
2398
2396
|
}
|
|
2399
2397
|
|
|
@@ -2407,7 +2405,7 @@
|
|
|
2407
2405
|
|
|
2408
2406
|
:where(.nc-checkbox-wrapper) > [data-label] {
|
|
2409
2407
|
grid-area: label;
|
|
2410
|
-
padding-inline-start:
|
|
2408
|
+
padding-inline-start: .5em;
|
|
2411
2409
|
}
|
|
2412
2410
|
|
|
2413
2411
|
:where(.nc-checkbox-wrapper) .nc-input-label {
|
|
@@ -2427,7 +2425,7 @@
|
|
|
2427
2425
|
}
|
|
2428
2426
|
|
|
2429
2427
|
:where(.nc-radio-field, .nc-checkbox-field) > :not(:first-child) {
|
|
2430
|
-
margin-block-start: .
|
|
2428
|
+
margin-block-start: .75em;
|
|
2431
2429
|
}
|
|
2432
2430
|
}
|
|
2433
2431
|
|
|
@@ -2436,7 +2434,7 @@
|
|
|
2436
2434
|
--_segmented-control-border-radius: var(--segmented-control-border-radius, var(--_input-border-radius));
|
|
2437
2435
|
--_segmented-control-checked-text-color: var(--segmented-control-checked-text-color, var(--color-brand-primary-contrast));
|
|
2438
2436
|
--_segmented-control-checked-surface-color: var(--segmented-control-checked-surface-color, var(--color-brand-primary-base));
|
|
2439
|
-
--nc-legend-spacing: .
|
|
2437
|
+
--nc-legend-spacing: .35em;
|
|
2440
2438
|
container: segmented-control / inline-size;
|
|
2441
2439
|
}
|
|
2442
2440
|
|
|
@@ -2593,7 +2591,7 @@
|
|
|
2593
2591
|
}
|
|
2594
2592
|
|
|
2595
2593
|
:where(.nc-meta-list-item):not(:last-child) {
|
|
2596
|
-
margin-block-end:
|
|
2594
|
+
margin-block-end: .5em;
|
|
2597
2595
|
}
|
|
2598
2596
|
|
|
2599
2597
|
@container metalist (width >= 20rem) {
|
|
@@ -2605,7 +2603,7 @@
|
|
|
2605
2603
|
content: "";
|
|
2606
2604
|
border-right: var(--border-width-medium) solid var(--color-border-muted);
|
|
2607
2605
|
transform: calc(var(--border-width-medium) / 2);
|
|
2608
|
-
margin: 0
|
|
2606
|
+
margin: 0 .5em;
|
|
2609
2607
|
}
|
|
2610
2608
|
}
|
|
2611
2609
|
|
|
@@ -2625,7 +2623,7 @@
|
|
|
2625
2623
|
--_notification-max-width: var(--notifications-max-width, 20rem);
|
|
2626
2624
|
--_notification-gap: var(--notification-gap, var(--spacing-base));
|
|
2627
2625
|
--_notification-border-color: var(--notification-border-color, var(--color-border-base));
|
|
2628
|
-
--_notification-center-background: var(--notification-center-background, color-mix(in oklch, var(---color-surface-subtle), transparent 95%)
|
|
2626
|
+
--_notification-center-background: var(--notification-center-background, color-mix(in oklch, var(---color-surface-subtle), transparent 95%));
|
|
2629
2627
|
}
|
|
2630
2628
|
|
|
2631
2629
|
:where(.nc-notification-center, .nc-notification-output) {
|
|
@@ -2690,7 +2688,7 @@
|
|
|
2690
2688
|
color: var(--color-text-base);
|
|
2691
2689
|
pointer-events: all;
|
|
2692
2690
|
flex-direction: column;
|
|
2693
|
-
padding: .
|
|
2691
|
+
padding: .5em 1em;
|
|
2694
2692
|
display: flex;
|
|
2695
2693
|
}
|
|
2696
2694
|
|
|
@@ -2717,7 +2715,7 @@
|
|
|
2717
2715
|
justify-content: space-between;
|
|
2718
2716
|
align-items: flex-end;
|
|
2719
2717
|
inline-size: 100%;
|
|
2720
|
-
margin-block-start: .
|
|
2718
|
+
margin-block-start: .25em;
|
|
2721
2719
|
display: flex;
|
|
2722
2720
|
}
|
|
2723
2721
|
|