@navikt/ds-css 6.10.1 → 6.12.0
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 +21 -1
- package/alert.css +5 -1
- package/button.css +2 -5
- package/copybutton.css +6 -4
- package/dist/component/alert.css +5 -1
- package/dist/component/alert.min.css +1 -1
- package/dist/component/button.css +2 -5
- package/dist/component/button.min.css +1 -1
- package/dist/component/copybutton.css +6 -4
- package/dist/component/copybutton.min.css +1 -1
- package/dist/component/index.css +795 -71
- package/dist/component/index.min.css +4 -4
- package/dist/component/list.css +7 -15
- package/dist/component/list.min.css +1 -1
- package/dist/component/pagination.css +4 -0
- package/dist/component/pagination.min.css +1 -1
- package/dist/component/primitives.css +805 -49
- package/dist/component/primitives.min.css +1 -1
- package/dist/components.css +829 -74
- package/dist/components.min.css +3 -3
- package/dist/global/tokens.css +2 -1
- package/dist/global/tokens.min.css +1 -1
- package/dist/index.css +795 -71
- package/dist/index.min.css +4 -4
- package/list.css +7 -15
- package/package.json +2 -2
- package/pagination.css +4 -0
- package/primitives/base.css +777 -0
- package/primitives/box.css +27 -49
- package/primitives/index.css +1 -0
package/dist/components.css
CHANGED
|
@@ -557,7 +557,11 @@
|
|
|
557
557
|
align-items: center;
|
|
558
558
|
}
|
|
559
559
|
|
|
560
|
-
.navds-
|
|
560
|
+
.navds-alert--small.navds-alert--close-button {
|
|
561
|
+
align-items: flex-start;
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
.navds-alert__wrapper--maxwidth {
|
|
561
565
|
max-width: 43.5rem;
|
|
562
566
|
}
|
|
563
567
|
|
|
@@ -679,6 +683,7 @@
|
|
|
679
683
|
|
|
680
684
|
padding: var(--ac-button-padding-small, var(--__ac-button-padding));
|
|
681
685
|
min-height: 2rem;
|
|
686
|
+
min-width: 2rem;
|
|
682
687
|
}
|
|
683
688
|
|
|
684
689
|
.navds-button--xsmall {
|
|
@@ -738,11 +743,7 @@
|
|
|
738
743
|
margin: 0;
|
|
739
744
|
}
|
|
740
745
|
|
|
741
|
-
.navds-button--small .navds-button__icon {
|
|
742
|
-
--ac-button-icon-margin: -2px;
|
|
743
|
-
}
|
|
744
|
-
|
|
745
|
-
.navds-button--xsmall .navds-button__icon {
|
|
746
|
+
:where(.navds-button--xsmall, .navds-button--small) .navds-button__icon {
|
|
746
747
|
--ac-button-icon-margin: -2px;
|
|
747
748
|
|
|
748
749
|
font-size: 1.25rem;
|
|
@@ -1563,6 +1564,7 @@
|
|
|
1563
1564
|
--__ac-copybutton-padding: var(--a-spacing-1) var(--a-spacing-3) var(--a-spacing-1) var(--a-spacing-2);
|
|
1564
1565
|
|
|
1565
1566
|
min-height: 2rem;
|
|
1567
|
+
min-width: 2rem;
|
|
1566
1568
|
}
|
|
1567
1569
|
|
|
1568
1570
|
.navds-copybutton--small.navds-copybutton--icon-right {
|
|
@@ -1573,6 +1575,7 @@
|
|
|
1573
1575
|
--__ac-copybutton-padding: var(--a-spacing-05) var(--a-spacing-2) var(--a-spacing-05) var(--a-spacing-1);
|
|
1574
1576
|
|
|
1575
1577
|
min-height: 1.5rem;
|
|
1578
|
+
min-width: 1.5rem;
|
|
1576
1579
|
}
|
|
1577
1580
|
|
|
1578
1581
|
.navds-copybutton--xsmall.navds-copybutton--icon-right {
|
|
@@ -1591,15 +1594,15 @@
|
|
|
1591
1594
|
--__ac-copybutton-padding: var(--a-spacing-05);
|
|
1592
1595
|
}
|
|
1593
1596
|
|
|
1594
|
-
.navds-copybutton--xsmall .navds-copybutton__icon {
|
|
1595
|
-
font-size: 1.25rem;
|
|
1596
|
-
}
|
|
1597
|
-
|
|
1598
1597
|
.navds-copybutton__icon {
|
|
1599
1598
|
font-size: 1.5rem;
|
|
1600
1599
|
display: flex;
|
|
1601
1600
|
}
|
|
1602
1601
|
|
|
1602
|
+
:where(.navds-copybutton--xsmall, .navds-copybutton--small) .navds-copybutton__icon {
|
|
1603
|
+
font-size: 1.25rem;
|
|
1604
|
+
}
|
|
1605
|
+
|
|
1603
1606
|
.navds-copybutton__icon:first-of-type {
|
|
1604
1607
|
margin-left: -0.25rem;
|
|
1605
1608
|
}
|
|
@@ -4911,6 +4914,10 @@ button.navds-internalheader__title:active,
|
|
|
4911
4914
|
@media (forced-colors: active) {
|
|
4912
4915
|
}
|
|
4913
4916
|
|
|
4917
|
+
.navds-pagination {
|
|
4918
|
+
position: relative;
|
|
4919
|
+
}
|
|
4920
|
+
|
|
4914
4921
|
.navds-pagination__list {
|
|
4915
4922
|
margin: 0;
|
|
4916
4923
|
padding: 0;
|
|
@@ -7431,15 +7438,7 @@ button.navds-stepper__step {
|
|
|
7431
7438
|
}
|
|
7432
7439
|
|
|
7433
7440
|
.navds-list li {
|
|
7434
|
-
margin-block-end: var(--a-spacing-
|
|
7435
|
-
}
|
|
7436
|
-
|
|
7437
|
-
.navds-list--small li {
|
|
7438
|
-
margin-block-end: var(--a-spacing-3);
|
|
7439
|
-
}
|
|
7440
|
-
|
|
7441
|
-
.navds-list--nested li {
|
|
7442
|
-
margin-block-end: var(--a-spacing-3);
|
|
7441
|
+
margin-block-end: var(--a-spacing-2);
|
|
7443
7442
|
}
|
|
7444
7443
|
|
|
7445
7444
|
.navds-list:last-child > ul > li:last-child,
|
|
@@ -7466,25 +7465,25 @@ button.navds-stepper__step {
|
|
|
7466
7465
|
.navds-list .navds-list__item-marker--bullet {
|
|
7467
7466
|
display: flex;
|
|
7468
7467
|
align-items: center;
|
|
7469
|
-
height: var(--a-font-line-height-
|
|
7468
|
+
height: var(--a-font-line-height-xlarge);
|
|
7470
7469
|
grid-column: 1 / 2;
|
|
7471
7470
|
color: var(--ac-list-marker-ul-color, var(--ac-list-marker-color, var(--a-icon-default)));
|
|
7472
7471
|
}
|
|
7473
7472
|
|
|
7474
7473
|
.navds-list--small .navds-list__item-marker--bullet {
|
|
7475
|
-
height: var(--a-font-line-height-
|
|
7474
|
+
height: var(--a-font-line-height-large);
|
|
7476
7475
|
}
|
|
7477
7476
|
|
|
7478
7477
|
.navds-list__item-marker--icon {
|
|
7479
7478
|
color: var(--ac-list-marker-icon-color, var(--ac-list-marker-color, var(--a-icon-default)));
|
|
7480
7479
|
display: flex;
|
|
7481
7480
|
align-items: center;
|
|
7482
|
-
height: var(--a-font-line-height-
|
|
7481
|
+
height: var(--a-font-line-height-xlarge);
|
|
7483
7482
|
padding-block-end: 1px;
|
|
7484
7483
|
}
|
|
7485
7484
|
|
|
7486
7485
|
.navds-list--small .navds-list__item-marker--icon {
|
|
7487
|
-
height: var(--a-font-line-height-
|
|
7486
|
+
height: var(--a-font-line-height-large);
|
|
7488
7487
|
}
|
|
7489
7488
|
|
|
7490
7489
|
.navds-list__item-marker--icon svg {
|
|
@@ -7509,40 +7508,34 @@ button.navds-stepper__step {
|
|
|
7509
7508
|
font-weight: var(--a-font-weight-bold);
|
|
7510
7509
|
font-size: var(--a-font-size-large);
|
|
7511
7510
|
color: var(--ac-list-marker-ol-color, var(--ac-list-marker-color, var(--a-icon-default)));
|
|
7512
|
-
line-height: var(--a-font-line-height-
|
|
7511
|
+
line-height: var(--a-font-line-height-xlarge);
|
|
7513
7512
|
}
|
|
7514
7513
|
|
|
7515
7514
|
.navds-list--small ol li::marker {
|
|
7516
7515
|
font-size: var(--a-font-size-small);
|
|
7517
|
-
line-height: var(--a-font-line-height-
|
|
7516
|
+
line-height: var(--a-font-line-height-large);
|
|
7518
7517
|
}
|
|
7519
7518
|
|
|
7520
|
-
.navds-box {
|
|
7521
|
-
--__ac-box-padding-xs: initial;
|
|
7522
|
-
--__ac-box-padding-sm: var(--__ac-box-padding-xs);
|
|
7523
|
-
--__ac-box-padding-md: var(--__ac-box-padding-sm);
|
|
7524
|
-
--__ac-box-padding-lg: var(--__ac-box-padding-md);
|
|
7525
|
-
--__ac-box-padding-xl: var(--__ac-box-padding-lg);
|
|
7526
|
-
--__ac-box-padding-2xl: var(--__ac-box-padding-xl);
|
|
7527
|
-
--__ac-box-padding-inline-xs: initial;
|
|
7528
|
-
--__ac-box-padding-inline-sm: var(--__ac-box-padding-inline-xs);
|
|
7529
|
-
--__ac-box-padding-inline-md: var(--__ac-box-padding-inline-sm);
|
|
7530
|
-
--__ac-box-padding-inline-lg: var(--__ac-box-padding-inline-md);
|
|
7531
|
-
--__ac-box-padding-inline-xl: var(--__ac-box-padding-inline-lg);
|
|
7532
|
-
--__ac-box-padding-inline-2xl: var(--__ac-box-padding-inline-xl);
|
|
7533
|
-
--__ac-box-padding-block-xs: initial;
|
|
7534
|
-
--__ac-box-padding-block-sm: var(--__ac-box-padding-block-xs);
|
|
7535
|
-
--__ac-box-padding-block-md: var(--__ac-box-padding-block-sm);
|
|
7536
|
-
--__ac-box-padding-block-lg: var(--__ac-box-padding-block-md);
|
|
7537
|
-
--__ac-box-padding-block-xl: var(--__ac-box-padding-block-lg);
|
|
7538
|
-
--__ac-box-padding-block-2xl: var(--__ac-box-padding-block-xl);
|
|
7539
|
-
--__ac-box-padding: var(--__ac-box-padding-xs);
|
|
7540
|
-
--__ac-box-padding-inline: var(--__ac-box-padding-inline-xs);
|
|
7541
|
-
--__ac-box-padding-block: var(--__ac-box-padding-block-xs);
|
|
7519
|
+
.navds-box-bg {
|
|
7542
7520
|
--__ac-box-background: initial;
|
|
7521
|
+
|
|
7522
|
+
background-color: var(--__ac-box-background);
|
|
7523
|
+
}
|
|
7524
|
+
|
|
7525
|
+
.navds-box-border-color {
|
|
7543
7526
|
--__ac-box-border-color: initial;
|
|
7544
|
-
|
|
7527
|
+
|
|
7528
|
+
border-color: var(--__ac-box-border-color);
|
|
7529
|
+
}
|
|
7530
|
+
|
|
7531
|
+
.navds-box-border-width {
|
|
7545
7532
|
--__ac-box-border-width: initial;
|
|
7533
|
+
|
|
7534
|
+
border-style: solid;
|
|
7535
|
+
border-width: var(--__ac-box-border-width, 0);
|
|
7536
|
+
}
|
|
7537
|
+
|
|
7538
|
+
.navds-box-border-radius {
|
|
7546
7539
|
--__ac-box-border-radius-xs: initial;
|
|
7547
7540
|
--__ac-box-border-radius-sm: var(--__ac-box-border-radius-xs);
|
|
7548
7541
|
--__ac-box-border-radius-md: var(--__ac-box-border-radius-sm);
|
|
@@ -7551,57 +7544,41 @@ button.navds-stepper__step {
|
|
|
7551
7544
|
--__ac-box-border-radius-2xl: var(--__ac-box-border-radius-xl);
|
|
7552
7545
|
--__ac-box-border-radius: var(--__ac-box-border-radius-xs);
|
|
7553
7546
|
|
|
7554
|
-
padding-inline: var(--__ac-box-padding-inline, var(--__ac-box-padding));
|
|
7555
|
-
padding-block: var(--__ac-box-padding-block, var(--__ac-box-padding));
|
|
7556
|
-
background-color: var(--__ac-box-background);
|
|
7557
|
-
border-style: solid;
|
|
7558
|
-
border-color: var(--__ac-box-border-color);
|
|
7559
7547
|
border-radius: var(--__ac-box-border-radius);
|
|
7548
|
+
}
|
|
7549
|
+
|
|
7550
|
+
.navds-box-shadow {
|
|
7551
|
+
--__ac-box-shadow: initial;
|
|
7552
|
+
|
|
7560
7553
|
box-shadow: var(--__ac-box-shadow);
|
|
7561
|
-
border-width: var(--__ac-box-border-width, 0);
|
|
7562
7554
|
}
|
|
7563
7555
|
|
|
7564
7556
|
@media (min-width: 480px) {
|
|
7565
|
-
.navds-box {
|
|
7566
|
-
--__ac-box-padding: var(--__ac-box-padding-sm);
|
|
7567
|
-
--__ac-box-padding-inline: var(--__ac-box-padding-inline-sm);
|
|
7568
|
-
--__ac-box-padding-block: var(--__ac-box-padding-block-sm);
|
|
7557
|
+
.navds-box-border-radius {
|
|
7569
7558
|
--__ac-box-border-radius: var(--__ac-box-border-radius-sm);
|
|
7570
7559
|
}
|
|
7571
7560
|
}
|
|
7572
7561
|
|
|
7573
7562
|
@media (min-width: 768px) {
|
|
7574
|
-
.navds-box {
|
|
7575
|
-
--__ac-box-padding: var(--__ac-box-padding-md);
|
|
7576
|
-
--__ac-box-padding-inline: var(--__ac-box-padding-inline-md);
|
|
7577
|
-
--__ac-box-padding-block: var(--__ac-box-padding-block-md);
|
|
7563
|
+
.navds-box-border-radius {
|
|
7578
7564
|
--__ac-box-border-radius: var(--__ac-box-border-radius-md);
|
|
7579
7565
|
}
|
|
7580
7566
|
}
|
|
7581
7567
|
|
|
7582
7568
|
@media (min-width: 1024px) {
|
|
7583
|
-
.navds-box {
|
|
7584
|
-
--__ac-box-padding: var(--__ac-box-padding-lg);
|
|
7585
|
-
--__ac-box-padding-inline: var(--__ac-box-padding-inline-lg);
|
|
7586
|
-
--__ac-box-padding-block: var(--__ac-box-padding-block-lg);
|
|
7569
|
+
.navds-box-border-radius {
|
|
7587
7570
|
--__ac-box-border-radius: var(--__ac-box-border-radius-lg);
|
|
7588
7571
|
}
|
|
7589
7572
|
}
|
|
7590
7573
|
|
|
7591
7574
|
@media (min-width: 1280px) {
|
|
7592
|
-
.navds-box {
|
|
7593
|
-
--__ac-box-padding: var(--__ac-box-padding-xl);
|
|
7594
|
-
--__ac-box-padding-inline: var(--__ac-box-padding-inline-xl);
|
|
7595
|
-
--__ac-box-padding-block: var(--__ac-box-padding-block-xl);
|
|
7575
|
+
.navds-box-border-radius {
|
|
7596
7576
|
--__ac-box-border-radius: var(--__ac-box-border-radius-xl);
|
|
7597
7577
|
}
|
|
7598
7578
|
}
|
|
7599
7579
|
|
|
7600
7580
|
@media (min-width: 1440px) {
|
|
7601
|
-
.navds-box {
|
|
7602
|
-
--__ac-box-padding: var(--__ac-box-padding-2xl);
|
|
7603
|
-
--__ac-box-padding-inline: var(--__ac-box-padding-inline-2xl);
|
|
7604
|
-
--__ac-box-padding-block: var(--__ac-box-padding-block-2xl);
|
|
7581
|
+
.navds-box-border-radius {
|
|
7605
7582
|
--__ac-box-border-radius: var(--__ac-box-border-radius-2xl);
|
|
7606
7583
|
}
|
|
7607
7584
|
}
|
|
@@ -7986,3 +7963,781 @@ button.navds-stepper__step {
|
|
|
7986
7963
|
display: none !important;
|
|
7987
7964
|
}
|
|
7988
7965
|
}
|
|
7966
|
+
|
|
7967
|
+
.navds-r-p {
|
|
7968
|
+
--__ac-r-p-xs: initial;
|
|
7969
|
+
--__ac-r-p-sm: var(--__ac-r-p-xs);
|
|
7970
|
+
--__ac-r-p-md: var(--__ac-r-p-sm);
|
|
7971
|
+
--__ac-r-p-lg: var(--__ac-r-p-md);
|
|
7972
|
+
--__ac-r-p-xl: var(--__ac-r-p-lg);
|
|
7973
|
+
--__ac-r-p-2xl: var(--__ac-r-p-xl);
|
|
7974
|
+
--__ac-r-padding: var(--__ac-r-p-xs);
|
|
7975
|
+
|
|
7976
|
+
padding: var(--__ac-r-padding);
|
|
7977
|
+
}
|
|
7978
|
+
|
|
7979
|
+
.navds-r-pi {
|
|
7980
|
+
--__ac-r-pi-xs: initial;
|
|
7981
|
+
--__ac-r-pi-sm: var(--__ac-r-pi-xs);
|
|
7982
|
+
--__ac-r-pi-md: var(--__ac-r-pi-sm);
|
|
7983
|
+
--__ac-r-pi-lg: var(--__ac-r-pi-md);
|
|
7984
|
+
--__ac-r-pi-xl: var(--__ac-r-pi-lg);
|
|
7985
|
+
--__ac-r-pi-2xl: var(--__ac-r-pi-xl);
|
|
7986
|
+
--__ac-r-pi: var(--__ac-r-pi-xs);
|
|
7987
|
+
|
|
7988
|
+
padding-inline: var(--__ac-r-pi, var(--__ac-r-padding));
|
|
7989
|
+
}
|
|
7990
|
+
|
|
7991
|
+
.navds-r-pb {
|
|
7992
|
+
--__ac-r-pb-xs: initial;
|
|
7993
|
+
--__ac-r-pb-sm: var(--__ac-r-pb-xs);
|
|
7994
|
+
--__ac-r-pb-md: var(--__ac-r-pb-sm);
|
|
7995
|
+
--__ac-r-pb-lg: var(--__ac-r-pb-md);
|
|
7996
|
+
--__ac-r-pb-xl: var(--__ac-r-pb-lg);
|
|
7997
|
+
--__ac-r-pb-2xl: var(--__ac-r-pb-xl);
|
|
7998
|
+
--__ac-r-pb: var(--__ac-r-pb-xs);
|
|
7999
|
+
|
|
8000
|
+
padding-block: var(--__ac-r-pb, var(--__ac-r-padding));
|
|
8001
|
+
}
|
|
8002
|
+
|
|
8003
|
+
.navds-r-m {
|
|
8004
|
+
--__ac-r-m-xs: initial;
|
|
8005
|
+
--__ac-r-m-sm: var(--__ac-r-m-xs);
|
|
8006
|
+
--__ac-r-m-md: var(--__ac-r-m-sm);
|
|
8007
|
+
--__ac-r-m-lg: var(--__ac-r-m-md);
|
|
8008
|
+
--__ac-r-m-xl: var(--__ac-r-m-lg);
|
|
8009
|
+
--__ac-r-m-2xl: var(--__ac-r-m-xl);
|
|
8010
|
+
--__ac-r-margin: var(--__ac-r-m-xs);
|
|
8011
|
+
|
|
8012
|
+
margin: var(--__ac-r-margin);
|
|
8013
|
+
}
|
|
8014
|
+
|
|
8015
|
+
.navds-r-mi {
|
|
8016
|
+
--__ac-r-mi-xs: initial;
|
|
8017
|
+
--__ac-r-mi-sm: var(--__ac-r-mi-xs);
|
|
8018
|
+
--__ac-r-mi-md: var(--__ac-r-mi-sm);
|
|
8019
|
+
--__ac-r-mi-lg: var(--__ac-r-mi-md);
|
|
8020
|
+
--__ac-r-mi-xl: var(--__ac-r-mi-lg);
|
|
8021
|
+
--__ac-r-mi-2xl: var(--__ac-r-mi-xl);
|
|
8022
|
+
--__ac-r-mi: var(--__ac-r-mi-xs);
|
|
8023
|
+
|
|
8024
|
+
margin-inline: var(--__ac-r-mi, var(--__ac-r-margin));
|
|
8025
|
+
}
|
|
8026
|
+
|
|
8027
|
+
.navds-r-mb {
|
|
8028
|
+
--__ac-r-mb-xs: initial;
|
|
8029
|
+
--__ac-r-mb-sm: var(--__ac-r-mb-xs);
|
|
8030
|
+
--__ac-r-mb-md: var(--__ac-r-mb-sm);
|
|
8031
|
+
--__ac-r-mb-lg: var(--__ac-r-mb-md);
|
|
8032
|
+
--__ac-r-mb-xl: var(--__ac-r-mb-lg);
|
|
8033
|
+
--__ac-r-mb-2xl: var(--__ac-r-mb-xl);
|
|
8034
|
+
--__ac-r-mb: var(--__ac-r-mb-xs);
|
|
8035
|
+
|
|
8036
|
+
margin-block: var(--__ac-r-mb, var(--__ac-r-margin));
|
|
8037
|
+
}
|
|
8038
|
+
|
|
8039
|
+
.navds-r-w {
|
|
8040
|
+
--__ac-r-w-xs: initial;
|
|
8041
|
+
--__ac-r-w-sm: var(--__ac-r-w-xs);
|
|
8042
|
+
--__ac-r-w-md: var(--__ac-r-w-sm);
|
|
8043
|
+
--__ac-r-w-lg: var(--__ac-r-w-md);
|
|
8044
|
+
--__ac-r-w-xl: var(--__ac-r-w-lg);
|
|
8045
|
+
--__ac-r-w-2xl: var(--__ac-r-w-xl);
|
|
8046
|
+
--__ac-r-w: var(--__ac-r-w-xs);
|
|
8047
|
+
|
|
8048
|
+
width: var(--__ac-r-w);
|
|
8049
|
+
}
|
|
8050
|
+
|
|
8051
|
+
.navds-r-minw {
|
|
8052
|
+
--__ac-r-minw-xs: initial;
|
|
8053
|
+
--__ac-r-minw-sm: var(--__ac-r-minw-xs);
|
|
8054
|
+
--__ac-r-minw-md: var(--__ac-r-minw-sm);
|
|
8055
|
+
--__ac-r-minw-lg: var(--__ac-r-minw-md);
|
|
8056
|
+
--__ac-r-minw-xl: var(--__ac-r-minw-lg);
|
|
8057
|
+
--__ac-r-minw-2xl: var(--__ac-r-minw-xl);
|
|
8058
|
+
--__ac-r-minw: var(--__ac-r-minw-xs);
|
|
8059
|
+
|
|
8060
|
+
min-width: var(--__ac-r-minw);
|
|
8061
|
+
}
|
|
8062
|
+
|
|
8063
|
+
.navds-r-maxw {
|
|
8064
|
+
--__ac-r-maxw-xs: initial;
|
|
8065
|
+
--__ac-r-maxw-sm: var(--__ac-r-maxw-xs);
|
|
8066
|
+
--__ac-r-maxw-md: var(--__ac-r-maxw-sm);
|
|
8067
|
+
--__ac-r-maxw-lg: var(--__ac-r-maxw-md);
|
|
8068
|
+
--__ac-r-maxw-xl: var(--__ac-r-maxw-lg);
|
|
8069
|
+
--__ac-r-maxw-2xl: var(--__ac-r-maxw-xl);
|
|
8070
|
+
--__ac-r-maxw: var(--__ac-r-maxw-xs);
|
|
8071
|
+
|
|
8072
|
+
max-width: var(--__ac-r-maxw);
|
|
8073
|
+
}
|
|
8074
|
+
|
|
8075
|
+
.navds-r-h {
|
|
8076
|
+
--__ac-r-h-xs: initial;
|
|
8077
|
+
--__ac-r-h-sm: var(--__ac-r-h-xs);
|
|
8078
|
+
--__ac-r-h-md: var(--__ac-r-h-sm);
|
|
8079
|
+
--__ac-r-h-lg: var(--__ac-r-h-md);
|
|
8080
|
+
--__ac-r-h-xl: var(--__ac-r-h-lg);
|
|
8081
|
+
--__ac-r-h-2xl: var(--__ac-r-h-xl);
|
|
8082
|
+
--__ac-r-h: var(--__ac-r-h-xs);
|
|
8083
|
+
|
|
8084
|
+
height: var(--__ac-r-h);
|
|
8085
|
+
}
|
|
8086
|
+
|
|
8087
|
+
.navds-r-minh {
|
|
8088
|
+
--__ac-r-minh-xs: initial;
|
|
8089
|
+
--__ac-r-minh-sm: var(--__ac-r-minh-xs);
|
|
8090
|
+
--__ac-r-minh-md: var(--__ac-r-minh-sm);
|
|
8091
|
+
--__ac-r-minh-lg: var(--__ac-r-minh-md);
|
|
8092
|
+
--__ac-r-minh-xl: var(--__ac-r-minh-lg);
|
|
8093
|
+
--__ac-r-minh-2xl: var(--__ac-r-minh-xl);
|
|
8094
|
+
--__ac-r-minh: var(--__ac-r-minh-xs);
|
|
8095
|
+
|
|
8096
|
+
min-height: var(--__ac-r-minh);
|
|
8097
|
+
}
|
|
8098
|
+
|
|
8099
|
+
.navds-r-maxh {
|
|
8100
|
+
--__ac-r-maxh-xs: initial;
|
|
8101
|
+
--__ac-r-maxh-sm: var(--__ac-r-maxh-xs);
|
|
8102
|
+
--__ac-r-maxh-md: var(--__ac-r-maxh-sm);
|
|
8103
|
+
--__ac-r-maxh-lg: var(--__ac-r-maxh-md);
|
|
8104
|
+
--__ac-r-maxh-xl: var(--__ac-r-maxh-lg);
|
|
8105
|
+
--__ac-r-maxh-2xl: var(--__ac-r-maxh-xl);
|
|
8106
|
+
--__ac-r-maxh: var(--__ac-r-maxh-xs);
|
|
8107
|
+
|
|
8108
|
+
max-height: var(--__ac-r-maxh);
|
|
8109
|
+
}
|
|
8110
|
+
|
|
8111
|
+
.navds-r-position {
|
|
8112
|
+
--__ac-r-position-xs: initial;
|
|
8113
|
+
--__ac-r-position-sm: var(--__ac-r-position-xs);
|
|
8114
|
+
--__ac-r-position-md: var(--__ac-r-position-sm);
|
|
8115
|
+
--__ac-r-position-lg: var(--__ac-r-position-md);
|
|
8116
|
+
--__ac-r-position-xl: var(--__ac-r-position-lg);
|
|
8117
|
+
--__ac-r-position-2xl: var(--__ac-r-position-xl);
|
|
8118
|
+
--__ac-r-position: var(--__ac-r-position-xs);
|
|
8119
|
+
|
|
8120
|
+
position: var(--__ac-r-position);
|
|
8121
|
+
}
|
|
8122
|
+
|
|
8123
|
+
.navds-r-inset {
|
|
8124
|
+
--__ac-r-inset-xs: initial;
|
|
8125
|
+
--__ac-r-inset-sm: var(--__ac-r-inset-xs);
|
|
8126
|
+
--__ac-r-inset-md: var(--__ac-r-inset-sm);
|
|
8127
|
+
--__ac-r-inset-lg: var(--__ac-r-inset-md);
|
|
8128
|
+
--__ac-r-inset-xl: var(--__ac-r-inset-lg);
|
|
8129
|
+
--__ac-r-inset-2xl: var(--__ac-r-inset-xl);
|
|
8130
|
+
--__ac-r-inset: var(--__ac-r-inset-xs);
|
|
8131
|
+
|
|
8132
|
+
inset: var(--__ac-r-inset);
|
|
8133
|
+
}
|
|
8134
|
+
|
|
8135
|
+
.navds-r-top {
|
|
8136
|
+
--__ac-r-top-xs: initial;
|
|
8137
|
+
--__ac-r-top-sm: var(--__ac-r-top-xs);
|
|
8138
|
+
--__ac-r-top-md: var(--__ac-r-top-sm);
|
|
8139
|
+
--__ac-r-top-lg: var(--__ac-r-top-md);
|
|
8140
|
+
--__ac-r-top-xl: var(--__ac-r-top-lg);
|
|
8141
|
+
--__ac-r-top-2xl: var(--__ac-r-top-xl);
|
|
8142
|
+
--__ac-r-top: var(--__ac-r-top-xs);
|
|
8143
|
+
|
|
8144
|
+
top: var(--__ac-r-top);
|
|
8145
|
+
}
|
|
8146
|
+
|
|
8147
|
+
.navds-r-right {
|
|
8148
|
+
--__ac-r-right-xs: initial;
|
|
8149
|
+
--__ac-r-right-sm: var(--__ac-r-right-xs);
|
|
8150
|
+
--__ac-r-right-md: var(--__ac-r-right-sm);
|
|
8151
|
+
--__ac-r-right-lg: var(--__ac-r-right-md);
|
|
8152
|
+
--__ac-r-right-xl: var(--__ac-r-right-lg);
|
|
8153
|
+
--__ac-r-right-2xl: var(--__ac-r-right-xl);
|
|
8154
|
+
--__ac-r-right: var(--__ac-r-right-xs);
|
|
8155
|
+
|
|
8156
|
+
right: var(--__ac-r-right);
|
|
8157
|
+
}
|
|
8158
|
+
|
|
8159
|
+
.navds-r-bottom {
|
|
8160
|
+
--__ac-r-bottom-xs: initial;
|
|
8161
|
+
--__ac-r-bottom-sm: var(--__ac-r-bottom-xs);
|
|
8162
|
+
--__ac-r-bottom-md: var(--__ac-r-bottom-sm);
|
|
8163
|
+
--__ac-r-bottom-lg: var(--__ac-r-bottom-md);
|
|
8164
|
+
--__ac-r-bottom-xl: var(--__ac-r-bottom-lg);
|
|
8165
|
+
--__ac-r-bottom-2xl: var(--__ac-r-bottom-xl);
|
|
8166
|
+
--__ac-r-bottom: var(--__ac-r-bottom-xs);
|
|
8167
|
+
|
|
8168
|
+
bottom: var(--__ac-r-bottom);
|
|
8169
|
+
}
|
|
8170
|
+
|
|
8171
|
+
.navds-r-left {
|
|
8172
|
+
--__ac-r-left-xs: initial;
|
|
8173
|
+
--__ac-r-left-sm: var(--__ac-r-left-xs);
|
|
8174
|
+
--__ac-r-left-md: var(--__ac-r-left-sm);
|
|
8175
|
+
--__ac-r-left-lg: var(--__ac-r-left-md);
|
|
8176
|
+
--__ac-r-left-xl: var(--__ac-r-left-lg);
|
|
8177
|
+
--__ac-r-left-2xl: var(--__ac-r-left-xl);
|
|
8178
|
+
--__ac-r-left: var(--__ac-r-left-xs);
|
|
8179
|
+
|
|
8180
|
+
left: var(--__ac-r-left);
|
|
8181
|
+
}
|
|
8182
|
+
|
|
8183
|
+
.navds-r-overflow {
|
|
8184
|
+
--__ac-r-overflow-xs: initial;
|
|
8185
|
+
--__ac-r-overflow-sm: var(--__ac-r-overflow-xs);
|
|
8186
|
+
--__ac-r-overflow-md: var(--__ac-r-overflow-sm);
|
|
8187
|
+
--__ac-r-overflow-lg: var(--__ac-r-overflow-md);
|
|
8188
|
+
--__ac-r-overflow-xl: var(--__ac-r-overflow-lg);
|
|
8189
|
+
--__ac-r-overflow-2xl: var(--__ac-r-overflow-xl);
|
|
8190
|
+
--__ac-r-overflow: var(--__ac-r-overflow-xs);
|
|
8191
|
+
|
|
8192
|
+
overflow: var(--__ac-r-overflow);
|
|
8193
|
+
}
|
|
8194
|
+
|
|
8195
|
+
.navds-r-overflowx {
|
|
8196
|
+
--__ac-r-overflowx-xs: initial;
|
|
8197
|
+
--__ac-r-overflowx-sm: var(--__ac-r-overflowx-xs);
|
|
8198
|
+
--__ac-r-overflowx-md: var(--__ac-r-overflowx-sm);
|
|
8199
|
+
--__ac-r-overflowx-lg: var(--__ac-r-overflowx-md);
|
|
8200
|
+
--__ac-r-overflowx-xl: var(--__ac-r-overflowx-lg);
|
|
8201
|
+
--__ac-r-overflowx-2xl: var(--__ac-r-overflowx-xl);
|
|
8202
|
+
--__ac-r-overflowx: var(--__ac-r-overflowx-xs);
|
|
8203
|
+
|
|
8204
|
+
overflow-x: var(--__ac-r-overflowx);
|
|
8205
|
+
}
|
|
8206
|
+
|
|
8207
|
+
.navds-r-overflowy {
|
|
8208
|
+
--__ac-r-overflowy-xs: initial;
|
|
8209
|
+
--__ac-r-overflowy-sm: var(--__ac-r-overflowy-xs);
|
|
8210
|
+
--__ac-r-overflowy-md: var(--__ac-r-overflowy-sm);
|
|
8211
|
+
--__ac-r-overflowy-lg: var(--__ac-r-overflowy-md);
|
|
8212
|
+
--__ac-r-overflowy-xl: var(--__ac-r-overflowy-lg);
|
|
8213
|
+
--__ac-r-overflowy-2xl: var(--__ac-r-overflowy-xl);
|
|
8214
|
+
--__ac-r-overflowy: var(--__ac-r-overflowy-xs);
|
|
8215
|
+
|
|
8216
|
+
overflow-y: var(--__ac-r-overflowy);
|
|
8217
|
+
}
|
|
8218
|
+
|
|
8219
|
+
.navds-r-flex-basis {
|
|
8220
|
+
--__ac-r-flex-basis-xs: initial;
|
|
8221
|
+
--__ac-r-flex-basis-sm: var(--__ac-r-flex-basis-xs);
|
|
8222
|
+
--__ac-r-flex-basis-md: var(--__ac-r-flex-basis-sm);
|
|
8223
|
+
--__ac-r-flex-basis-lg: var(--__ac-r-flex-basis-md);
|
|
8224
|
+
--__ac-r-flex-basis-xl: var(--__ac-r-flex-basis-lg);
|
|
8225
|
+
--__ac-r-flex-basis-2xl: var(--__ac-r-flex-basis-xl);
|
|
8226
|
+
--__ac-r-flex-basis: var(--__ac-r-flex-basis-xs);
|
|
8227
|
+
|
|
8228
|
+
flex-basis: var(--__ac-r-flex-basis);
|
|
8229
|
+
}
|
|
8230
|
+
|
|
8231
|
+
.navds-r-flex-grow {
|
|
8232
|
+
--__ac-r-flex-grow-xs: initial;
|
|
8233
|
+
--__ac-r-flex-grow-sm: var(--__ac-r-flex-grow-xs);
|
|
8234
|
+
--__ac-r-flex-grow-md: var(--__ac-r-flex-grow-sm);
|
|
8235
|
+
--__ac-r-flex-grow-lg: var(--__ac-r-flex-grow-md);
|
|
8236
|
+
--__ac-r-flex-grow-xl: var(--__ac-r-flex-grow-lg);
|
|
8237
|
+
--__ac-r-flex-grow-2xl: var(--__ac-r-flex-grow-xl);
|
|
8238
|
+
--__ac-r-flex-grow: var(--__ac-r-flex-grow-xs);
|
|
8239
|
+
|
|
8240
|
+
flex-grow: var(--__ac-r-flex-grow);
|
|
8241
|
+
}
|
|
8242
|
+
|
|
8243
|
+
.navds-r-flex-shrink {
|
|
8244
|
+
--__ac-r-flex-shrink-xs: initial;
|
|
8245
|
+
--__ac-r-flex-shrink-sm: var(--__ac-r-flex-shrink-xs);
|
|
8246
|
+
--__ac-r-flex-shrink-md: var(--__ac-r-flex-shrink-sm);
|
|
8247
|
+
--__ac-r-flex-shrink-lg: var(--__ac-r-flex-shrink-md);
|
|
8248
|
+
--__ac-r-flex-shrink-xl: var(--__ac-r-flex-shrink-lg);
|
|
8249
|
+
--__ac-r-flex-shrink-2xl: var(--__ac-r-flex-shrink-xl);
|
|
8250
|
+
--__ac-r-flex-shrink: var(--__ac-r-flex-shrink-xs);
|
|
8251
|
+
|
|
8252
|
+
flex-shrink: var(--__ac-r-flex-shrink);
|
|
8253
|
+
}
|
|
8254
|
+
|
|
8255
|
+
@media (min-width: 480px) {
|
|
8256
|
+
.navds-r-p {
|
|
8257
|
+
--__ac-r-padding: var(--__ac-r-p-sm);
|
|
8258
|
+
}
|
|
8259
|
+
|
|
8260
|
+
.navds-r-pi {
|
|
8261
|
+
--__ac-r-pi: var(--__ac-r-pi-sm);
|
|
8262
|
+
}
|
|
8263
|
+
|
|
8264
|
+
.navds-r-pb {
|
|
8265
|
+
--__ac-r-pb: var(--__ac-r-pb-sm);
|
|
8266
|
+
}
|
|
8267
|
+
|
|
8268
|
+
.navds-r-m {
|
|
8269
|
+
--__ac-r-margin: var(--__ac-r-m-sm);
|
|
8270
|
+
}
|
|
8271
|
+
|
|
8272
|
+
.navds-r-mi {
|
|
8273
|
+
--__ac-r-mi: var(--__ac-r-mi-sm);
|
|
8274
|
+
}
|
|
8275
|
+
|
|
8276
|
+
.navds-r-mb {
|
|
8277
|
+
--__ac-r-mb: var(--__ac-r-mb-sm);
|
|
8278
|
+
}
|
|
8279
|
+
|
|
8280
|
+
.navds-r-w {
|
|
8281
|
+
--__ac-r-w: var(--__ac-r-w-sm);
|
|
8282
|
+
}
|
|
8283
|
+
|
|
8284
|
+
.navds-r-minw {
|
|
8285
|
+
--__ac-r-minw: var(--__ac-r-minw-sm);
|
|
8286
|
+
}
|
|
8287
|
+
|
|
8288
|
+
.navds-r-maxw {
|
|
8289
|
+
--__ac-r-maxw: var(--__ac-r-maxw-sm);
|
|
8290
|
+
}
|
|
8291
|
+
|
|
8292
|
+
.navds-r-h {
|
|
8293
|
+
--__ac-r-h: var(--__ac-r-h-sm);
|
|
8294
|
+
}
|
|
8295
|
+
|
|
8296
|
+
.navds-r-minh {
|
|
8297
|
+
--__ac-r-minh: var(--__ac-r-minh-sm);
|
|
8298
|
+
}
|
|
8299
|
+
|
|
8300
|
+
.navds-r-maxh {
|
|
8301
|
+
--__ac-r-maxh: var(--__ac-r-maxh-sm);
|
|
8302
|
+
}
|
|
8303
|
+
|
|
8304
|
+
.navds-r-position {
|
|
8305
|
+
--__ac-r-position: var(--__ac-r-position-sm);
|
|
8306
|
+
}
|
|
8307
|
+
|
|
8308
|
+
.navds-r-inset {
|
|
8309
|
+
--__ac-r-inset: var(--__ac-r-inset-sm);
|
|
8310
|
+
}
|
|
8311
|
+
|
|
8312
|
+
.navds-r-top {
|
|
8313
|
+
--__ac-r-top: var(--__ac-r-top-sm);
|
|
8314
|
+
}
|
|
8315
|
+
|
|
8316
|
+
.navds-r-right {
|
|
8317
|
+
--__ac-r-right: var(--__ac-r-right-sm);
|
|
8318
|
+
}
|
|
8319
|
+
|
|
8320
|
+
.navds-r-bottom {
|
|
8321
|
+
--__ac-r-bottom: var(--__ac-r-bottom-sm);
|
|
8322
|
+
}
|
|
8323
|
+
|
|
8324
|
+
.navds-r-left {
|
|
8325
|
+
--__ac-r-left: var(--__ac-r-left-sm);
|
|
8326
|
+
}
|
|
8327
|
+
|
|
8328
|
+
.navds-r-overflow {
|
|
8329
|
+
--__ac-r-overflow: var(--__ac-r-overflow-sm);
|
|
8330
|
+
}
|
|
8331
|
+
|
|
8332
|
+
.navds-r-overflowx {
|
|
8333
|
+
--__ac-r-overflowx: var(--__ac-r-overflowx-sm);
|
|
8334
|
+
}
|
|
8335
|
+
|
|
8336
|
+
.navds-r-overflowy {
|
|
8337
|
+
--__ac-r-overflowy: var(--__ac-r-overflowy-sm);
|
|
8338
|
+
}
|
|
8339
|
+
|
|
8340
|
+
.navds-r-flex-basis {
|
|
8341
|
+
--__ac-r-flex-basis: var(--__ac-r-flex-basis-sm);
|
|
8342
|
+
}
|
|
8343
|
+
|
|
8344
|
+
.navds-r-flex-grow {
|
|
8345
|
+
--__ac-r-flex-grow: var(--__ac-r-flex-grow-sm);
|
|
8346
|
+
}
|
|
8347
|
+
|
|
8348
|
+
.navds-r-flex-shrink {
|
|
8349
|
+
--__ac-r-flex-shrink: var(--__ac-r-flex-shrink-sm);
|
|
8350
|
+
}
|
|
8351
|
+
}
|
|
8352
|
+
|
|
8353
|
+
@media (min-width: 768px) {
|
|
8354
|
+
.navds-r-p {
|
|
8355
|
+
--__ac-r-padding: var(--__ac-r-p-md);
|
|
8356
|
+
}
|
|
8357
|
+
|
|
8358
|
+
.navds-r-pi {
|
|
8359
|
+
--__ac-r-pi: var(--__ac-r-pi-md);
|
|
8360
|
+
}
|
|
8361
|
+
|
|
8362
|
+
.navds-r-pb {
|
|
8363
|
+
--__ac-r-pb: var(--__ac-r-pb-md);
|
|
8364
|
+
}
|
|
8365
|
+
|
|
8366
|
+
.navds-r-m {
|
|
8367
|
+
--__ac-r-margin: var(--__ac-r-m-md);
|
|
8368
|
+
}
|
|
8369
|
+
|
|
8370
|
+
.navds-r-mi {
|
|
8371
|
+
--__ac-r-mi: var(--__ac-r-mi-md);
|
|
8372
|
+
}
|
|
8373
|
+
|
|
8374
|
+
.navds-r-mb {
|
|
8375
|
+
--__ac-r-mb: var(--__ac-r-mb-md);
|
|
8376
|
+
}
|
|
8377
|
+
|
|
8378
|
+
.navds-r-w {
|
|
8379
|
+
--__ac-r-w: var(--__ac-r-w-md);
|
|
8380
|
+
}
|
|
8381
|
+
|
|
8382
|
+
.navds-r-minw {
|
|
8383
|
+
--__ac-r-minw: var(--__ac-r-minw-md);
|
|
8384
|
+
}
|
|
8385
|
+
|
|
8386
|
+
.navds-r-maxw {
|
|
8387
|
+
--__ac-r-maxw: var(--__ac-r-maxw-md);
|
|
8388
|
+
}
|
|
8389
|
+
|
|
8390
|
+
.navds-r-h {
|
|
8391
|
+
--__ac-r-h: var(--__ac-r-h-md);
|
|
8392
|
+
}
|
|
8393
|
+
|
|
8394
|
+
.navds-r-minh {
|
|
8395
|
+
--__ac-r-minh: var(--__ac-r-minh-md);
|
|
8396
|
+
}
|
|
8397
|
+
|
|
8398
|
+
.navds-r-maxh {
|
|
8399
|
+
--__ac-r-maxh: var(--__ac-r-maxh-md);
|
|
8400
|
+
}
|
|
8401
|
+
|
|
8402
|
+
.navds-r-position {
|
|
8403
|
+
--__ac-r-position: var(--__ac-r-position-md);
|
|
8404
|
+
}
|
|
8405
|
+
|
|
8406
|
+
.navds-r-inset {
|
|
8407
|
+
--__ac-r-inset: var(--__ac-r-inset-md);
|
|
8408
|
+
}
|
|
8409
|
+
|
|
8410
|
+
.navds-r-top {
|
|
8411
|
+
--__ac-r-top: var(--__ac-r-top-md);
|
|
8412
|
+
}
|
|
8413
|
+
|
|
8414
|
+
.navds-r-right {
|
|
8415
|
+
--__ac-r-right: var(--__ac-r-right-md);
|
|
8416
|
+
}
|
|
8417
|
+
|
|
8418
|
+
.navds-r-bottom {
|
|
8419
|
+
--__ac-r-bottom: var(--__ac-r-bottom-md);
|
|
8420
|
+
}
|
|
8421
|
+
|
|
8422
|
+
.navds-r-left {
|
|
8423
|
+
--__ac-r-left: var(--__ac-r-left-md);
|
|
8424
|
+
}
|
|
8425
|
+
|
|
8426
|
+
.navds-r-overflow {
|
|
8427
|
+
--__ac-r-overflow: var(--__ac-r-overflow-md);
|
|
8428
|
+
}
|
|
8429
|
+
|
|
8430
|
+
.navds-r-overflowx {
|
|
8431
|
+
--__ac-r-overflowx: var(--__ac-r-overflowx-md);
|
|
8432
|
+
}
|
|
8433
|
+
|
|
8434
|
+
.navds-r-overflowy {
|
|
8435
|
+
--__ac-r-overflowy: var(--__ac-r-overflowy-md);
|
|
8436
|
+
}
|
|
8437
|
+
|
|
8438
|
+
.navds-r-flex-basis {
|
|
8439
|
+
--__ac-r-flex-basis: var(--__ac-r-flex-basis-md);
|
|
8440
|
+
}
|
|
8441
|
+
|
|
8442
|
+
.navds-r-flex-grow {
|
|
8443
|
+
--__ac-r-flex-grow: var(--__ac-r-flex-grow-md);
|
|
8444
|
+
}
|
|
8445
|
+
|
|
8446
|
+
.navds-r-flex-shrink {
|
|
8447
|
+
--__ac-r-flex-shrink: var(--__ac-r-flex-shrink-md);
|
|
8448
|
+
}
|
|
8449
|
+
}
|
|
8450
|
+
|
|
8451
|
+
@media (min-width: 1024px) {
|
|
8452
|
+
.navds-r-p {
|
|
8453
|
+
--__ac-r-padding: var(--__ac-r-p-lg);
|
|
8454
|
+
}
|
|
8455
|
+
|
|
8456
|
+
.navds-r-pi {
|
|
8457
|
+
--__ac-r-pi: var(--__ac-r-pi-lg);
|
|
8458
|
+
}
|
|
8459
|
+
|
|
8460
|
+
.navds-r-pb {
|
|
8461
|
+
--__ac-r-pb: var(--__ac-r-pb-lg);
|
|
8462
|
+
}
|
|
8463
|
+
|
|
8464
|
+
.navds-r-m {
|
|
8465
|
+
--__ac-r-margin: var(--__ac-r-m-lg);
|
|
8466
|
+
}
|
|
8467
|
+
|
|
8468
|
+
.navds-r-mi {
|
|
8469
|
+
--__ac-r-mi: var(--__ac-r-mi-lg);
|
|
8470
|
+
}
|
|
8471
|
+
|
|
8472
|
+
.navds-r-mb {
|
|
8473
|
+
--__ac-r-mb: var(--__ac-r-mb-lg);
|
|
8474
|
+
}
|
|
8475
|
+
|
|
8476
|
+
.navds-r-w {
|
|
8477
|
+
--__ac-r-w: var(--__ac-r-w-lg);
|
|
8478
|
+
}
|
|
8479
|
+
|
|
8480
|
+
.navds-r-minw {
|
|
8481
|
+
--__ac-r-minw: var(--__ac-r-minw-lg);
|
|
8482
|
+
}
|
|
8483
|
+
|
|
8484
|
+
.navds-r-maxw {
|
|
8485
|
+
--__ac-r-maxw: var(--__ac-r-maxw-lg);
|
|
8486
|
+
}
|
|
8487
|
+
|
|
8488
|
+
.navds-r-h {
|
|
8489
|
+
--__ac-r-h: var(--__ac-r-h-lg);
|
|
8490
|
+
}
|
|
8491
|
+
|
|
8492
|
+
.navds-r-minh {
|
|
8493
|
+
--__ac-r-minh: var(--__ac-r-minh-lg);
|
|
8494
|
+
}
|
|
8495
|
+
|
|
8496
|
+
.navds-r-maxh {
|
|
8497
|
+
--__ac-r-maxh: var(--__ac-r-maxh-lg);
|
|
8498
|
+
}
|
|
8499
|
+
|
|
8500
|
+
.navds-r-position {
|
|
8501
|
+
--__ac-r-position: var(--__ac-r-position-lg);
|
|
8502
|
+
}
|
|
8503
|
+
|
|
8504
|
+
.navds-r-inset {
|
|
8505
|
+
--__ac-r-inset: var(--__ac-r-inset-lg);
|
|
8506
|
+
}
|
|
8507
|
+
|
|
8508
|
+
.navds-r-top {
|
|
8509
|
+
--__ac-r-top: var(--__ac-r-top-lg);
|
|
8510
|
+
}
|
|
8511
|
+
|
|
8512
|
+
.navds-r-right {
|
|
8513
|
+
--__ac-r-right: var(--__ac-r-right-lg);
|
|
8514
|
+
}
|
|
8515
|
+
|
|
8516
|
+
.navds-r-bottom {
|
|
8517
|
+
--__ac-r-bottom: var(--__ac-r-bottom-lg);
|
|
8518
|
+
}
|
|
8519
|
+
|
|
8520
|
+
.navds-r-left {
|
|
8521
|
+
--__ac-r-left: var(--__ac-r-left-lg);
|
|
8522
|
+
}
|
|
8523
|
+
|
|
8524
|
+
.navds-r-overflow {
|
|
8525
|
+
--__ac-r-overflow: var(--__ac-r-overflow-lg);
|
|
8526
|
+
}
|
|
8527
|
+
|
|
8528
|
+
.navds-r-overflowx {
|
|
8529
|
+
--__ac-r-overflowx: var(--__ac-r-overflowx-lg);
|
|
8530
|
+
}
|
|
8531
|
+
|
|
8532
|
+
.navds-r-overflowy {
|
|
8533
|
+
--__ac-r-overflowy: var(--__ac-r-overflowy-lg);
|
|
8534
|
+
}
|
|
8535
|
+
|
|
8536
|
+
.navds-r-flex-basis {
|
|
8537
|
+
--__ac-r-flex-basis: var(--__ac-r-flex-basis-lg);
|
|
8538
|
+
}
|
|
8539
|
+
|
|
8540
|
+
.navds-r-flex-grow {
|
|
8541
|
+
--__ac-r-flex-grow: var(--__ac-r-flex-grow-lg);
|
|
8542
|
+
}
|
|
8543
|
+
|
|
8544
|
+
.navds-r-flex-shrink {
|
|
8545
|
+
--__ac-r-flex-shrink: var(--__ac-r-flex-shrink-lg);
|
|
8546
|
+
}
|
|
8547
|
+
}
|
|
8548
|
+
|
|
8549
|
+
@media (min-width: 1280px) {
|
|
8550
|
+
.navds-r-p {
|
|
8551
|
+
--__ac-r-padding: var(--__ac-r-p-xl);
|
|
8552
|
+
}
|
|
8553
|
+
|
|
8554
|
+
.navds-r-pi {
|
|
8555
|
+
--__ac-r-pi: var(--__ac-r-pi-xl);
|
|
8556
|
+
}
|
|
8557
|
+
|
|
8558
|
+
.navds-r-pb {
|
|
8559
|
+
--__ac-r-pb: var(--__ac-r-pb-xl);
|
|
8560
|
+
}
|
|
8561
|
+
|
|
8562
|
+
.navds-r-m {
|
|
8563
|
+
--__ac-r-margin: var(--__ac-r-m-xl);
|
|
8564
|
+
}
|
|
8565
|
+
|
|
8566
|
+
.navds-r-mi {
|
|
8567
|
+
--__ac-r-mi: var(--__ac-r-mi-xl);
|
|
8568
|
+
}
|
|
8569
|
+
|
|
8570
|
+
.navds-r-mb {
|
|
8571
|
+
--__ac-r-mb: var(--__ac-r-mb-xl);
|
|
8572
|
+
}
|
|
8573
|
+
|
|
8574
|
+
.navds-r-w {
|
|
8575
|
+
--__ac-r-w: var(--__ac-r-w-xl);
|
|
8576
|
+
}
|
|
8577
|
+
|
|
8578
|
+
.navds-r-minw {
|
|
8579
|
+
--__ac-r-minw: var(--__ac-r-minw-xl);
|
|
8580
|
+
}
|
|
8581
|
+
|
|
8582
|
+
.navds-r-maxw {
|
|
8583
|
+
--__ac-r-maxw: var(--__ac-r-maxw-xl);
|
|
8584
|
+
}
|
|
8585
|
+
|
|
8586
|
+
.navds-r-h {
|
|
8587
|
+
--__ac-r-h: var(--__ac-r-h-xl);
|
|
8588
|
+
}
|
|
8589
|
+
|
|
8590
|
+
.navds-r-minh {
|
|
8591
|
+
--__ac-r-minh: var(--__ac-r-minh-xl);
|
|
8592
|
+
}
|
|
8593
|
+
|
|
8594
|
+
.navds-r-maxh {
|
|
8595
|
+
--__ac-r-maxh: var(--__ac-r-maxh-xl);
|
|
8596
|
+
}
|
|
8597
|
+
|
|
8598
|
+
.navds-r-position {
|
|
8599
|
+
--__ac-r-position: var(--__ac-r-position-xl);
|
|
8600
|
+
}
|
|
8601
|
+
|
|
8602
|
+
.navds-r-inset {
|
|
8603
|
+
--__ac-r-inset: var(--__ac-r-inset-xl);
|
|
8604
|
+
}
|
|
8605
|
+
|
|
8606
|
+
.navds-r-top {
|
|
8607
|
+
--__ac-r-top: var(--__ac-r-top-xl);
|
|
8608
|
+
}
|
|
8609
|
+
|
|
8610
|
+
.navds-r-right {
|
|
8611
|
+
--__ac-r-right: var(--__ac-r-right-xl);
|
|
8612
|
+
}
|
|
8613
|
+
|
|
8614
|
+
.navds-r-bottom {
|
|
8615
|
+
--__ac-r-bottom: var(--__ac-r-bottom-xl);
|
|
8616
|
+
}
|
|
8617
|
+
|
|
8618
|
+
.navds-r-left {
|
|
8619
|
+
--__ac-r-left: var(--__ac-r-left-xl);
|
|
8620
|
+
}
|
|
8621
|
+
|
|
8622
|
+
.navds-r-overflow {
|
|
8623
|
+
--__ac-r-overflow: var(--__ac-r-overflow-xl);
|
|
8624
|
+
}
|
|
8625
|
+
|
|
8626
|
+
.navds-r-overflowx {
|
|
8627
|
+
--__ac-r-overflowx: var(--__ac-r-overflowx-xl);
|
|
8628
|
+
}
|
|
8629
|
+
|
|
8630
|
+
.navds-r-overflowy {
|
|
8631
|
+
--__ac-r-overflowy: var(--__ac-r-overflowy-xl);
|
|
8632
|
+
}
|
|
8633
|
+
|
|
8634
|
+
.navds-r-flex-basis {
|
|
8635
|
+
--__ac-r-flex-basis: var(--__ac-r-flex-basis-xl);
|
|
8636
|
+
}
|
|
8637
|
+
|
|
8638
|
+
.navds-r-flex-grow {
|
|
8639
|
+
--__ac-r-flex-grow: var(--__ac-r-flex-grow-xl);
|
|
8640
|
+
}
|
|
8641
|
+
|
|
8642
|
+
.navds-r-flex-shrink {
|
|
8643
|
+
--__ac-r-flex-shrink: var(--__ac-r-flex-shrink-xl);
|
|
8644
|
+
}
|
|
8645
|
+
}
|
|
8646
|
+
|
|
8647
|
+
@media (min-width: 1440px) {
|
|
8648
|
+
.navds-r-p {
|
|
8649
|
+
--__ac-r-padding: var(--__ac-r-p-2xl);
|
|
8650
|
+
}
|
|
8651
|
+
|
|
8652
|
+
.navds-r-pi {
|
|
8653
|
+
--__ac-r-pi: var(--__ac-r-pi-2xl);
|
|
8654
|
+
}
|
|
8655
|
+
|
|
8656
|
+
.navds-r-pb {
|
|
8657
|
+
--__ac-r-pb: var(--__ac-r-pb-2xl);
|
|
8658
|
+
}
|
|
8659
|
+
|
|
8660
|
+
.navds-r-m {
|
|
8661
|
+
--__ac-r-margin: var(--__ac-r-m-2xl);
|
|
8662
|
+
}
|
|
8663
|
+
|
|
8664
|
+
.navds-r-mi {
|
|
8665
|
+
--__ac-r-mi: var(--__ac-r-mi-2xl);
|
|
8666
|
+
}
|
|
8667
|
+
|
|
8668
|
+
.navds-r-mb {
|
|
8669
|
+
--__ac-r-mb: var(--__ac-r-mb-2xl);
|
|
8670
|
+
}
|
|
8671
|
+
|
|
8672
|
+
.navds-r-w {
|
|
8673
|
+
--__ac-r-w: var(--__ac-r-w-2xl);
|
|
8674
|
+
}
|
|
8675
|
+
|
|
8676
|
+
.navds-r-minw {
|
|
8677
|
+
--__ac-r-minw: var(--__ac-r-minw-2xl);
|
|
8678
|
+
}
|
|
8679
|
+
|
|
8680
|
+
.navds-r-maxw {
|
|
8681
|
+
--__ac-r-maxw: var(--__ac-r-maxw-2xl);
|
|
8682
|
+
}
|
|
8683
|
+
|
|
8684
|
+
.navds-r-h {
|
|
8685
|
+
--__ac-r-h: var(--__ac-r-h-2xl);
|
|
8686
|
+
}
|
|
8687
|
+
|
|
8688
|
+
.navds-r-minh {
|
|
8689
|
+
--__ac-r-minh: var(--__ac-r-minh-2xl);
|
|
8690
|
+
}
|
|
8691
|
+
|
|
8692
|
+
.navds-r-maxh {
|
|
8693
|
+
--__ac-r-maxh: var(--__ac-r-maxh-2xl);
|
|
8694
|
+
}
|
|
8695
|
+
|
|
8696
|
+
.navds-r-position {
|
|
8697
|
+
--__ac-r-position: var(--__ac-r-position-2xl);
|
|
8698
|
+
}
|
|
8699
|
+
|
|
8700
|
+
.navds-r-inset {
|
|
8701
|
+
--__ac-r-inset: var(--__ac-r-inset-2xl);
|
|
8702
|
+
}
|
|
8703
|
+
|
|
8704
|
+
.navds-r-top {
|
|
8705
|
+
--__ac-r-top: var(--__ac-r-top-2xl);
|
|
8706
|
+
}
|
|
8707
|
+
|
|
8708
|
+
.navds-r-right {
|
|
8709
|
+
--__ac-r-right: var(--__ac-r-right-2xl);
|
|
8710
|
+
}
|
|
8711
|
+
|
|
8712
|
+
.navds-r-bottom {
|
|
8713
|
+
--__ac-r-bottom: var(--__ac-r-bottom-2xl);
|
|
8714
|
+
}
|
|
8715
|
+
|
|
8716
|
+
.navds-r-left {
|
|
8717
|
+
--__ac-r-left: var(--__ac-r-left-2xl);
|
|
8718
|
+
}
|
|
8719
|
+
|
|
8720
|
+
.navds-r-overflow {
|
|
8721
|
+
--__ac-r-overflow: var(--__ac-r-overflow-2xl);
|
|
8722
|
+
}
|
|
8723
|
+
|
|
8724
|
+
.navds-r-overflowx {
|
|
8725
|
+
--__ac-r-overflowx: var(--__ac-r-overflowx-2xl);
|
|
8726
|
+
}
|
|
8727
|
+
|
|
8728
|
+
.navds-r-overflowy {
|
|
8729
|
+
--__ac-r-overflowy: var(--__ac-r-overflowy-2xl);
|
|
8730
|
+
}
|
|
8731
|
+
|
|
8732
|
+
.navds-r-flex-basis {
|
|
8733
|
+
--__ac-r-flex-basis: var(--__ac-r-flex-basis-2xl);
|
|
8734
|
+
}
|
|
8735
|
+
|
|
8736
|
+
.navds-r-flex-grow {
|
|
8737
|
+
--__ac-r-flex-grow: var(--__ac-r-flex-grow-2xl);
|
|
8738
|
+
}
|
|
8739
|
+
|
|
8740
|
+
.navds-r-flex-shrink {
|
|
8741
|
+
--__ac-r-flex-shrink: var(--__ac-r-flex-shrink-2xl);
|
|
8742
|
+
}
|
|
8743
|
+
}
|