@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.
@@ -1,29 +1,23 @@
1
- .navds-box {
2
- --__ac-box-padding-xs: initial;
3
- --__ac-box-padding-sm: var(--__ac-box-padding-xs);
4
- --__ac-box-padding-md: var(--__ac-box-padding-sm);
5
- --__ac-box-padding-lg: var(--__ac-box-padding-md);
6
- --__ac-box-padding-xl: var(--__ac-box-padding-lg);
7
- --__ac-box-padding-2xl: var(--__ac-box-padding-xl);
8
- --__ac-box-padding-inline-xs: initial;
9
- --__ac-box-padding-inline-sm: var(--__ac-box-padding-inline-xs);
10
- --__ac-box-padding-inline-md: var(--__ac-box-padding-inline-sm);
11
- --__ac-box-padding-inline-lg: var(--__ac-box-padding-inline-md);
12
- --__ac-box-padding-inline-xl: var(--__ac-box-padding-inline-lg);
13
- --__ac-box-padding-inline-2xl: var(--__ac-box-padding-inline-xl);
14
- --__ac-box-padding-block-xs: initial;
15
- --__ac-box-padding-block-sm: var(--__ac-box-padding-block-xs);
16
- --__ac-box-padding-block-md: var(--__ac-box-padding-block-sm);
17
- --__ac-box-padding-block-lg: var(--__ac-box-padding-block-md);
18
- --__ac-box-padding-block-xl: var(--__ac-box-padding-block-lg);
19
- --__ac-box-padding-block-2xl: var(--__ac-box-padding-block-xl);
20
- --__ac-box-padding: var(--__ac-box-padding-xs);
21
- --__ac-box-padding-inline: var(--__ac-box-padding-inline-xs);
22
- --__ac-box-padding-block: var(--__ac-box-padding-block-xs);
1
+ .navds-box-bg {
23
2
  --__ac-box-background: initial;
3
+
4
+ background-color: var(--__ac-box-background);
5
+ }
6
+
7
+ .navds-box-border-color {
24
8
  --__ac-box-border-color: initial;
25
- --__ac-box-shadow: initial;
9
+
10
+ border-color: var(--__ac-box-border-color);
11
+ }
12
+
13
+ .navds-box-border-width {
26
14
  --__ac-box-border-width: initial;
15
+
16
+ border-style: solid;
17
+ border-width: var(--__ac-box-border-width, 0);
18
+ }
19
+
20
+ .navds-box-border-radius {
27
21
  --__ac-box-border-radius-xs: initial;
28
22
  --__ac-box-border-radius-sm: var(--__ac-box-border-radius-xs);
29
23
  --__ac-box-border-radius-md: var(--__ac-box-border-radius-sm);
@@ -32,57 +26,41 @@
32
26
  --__ac-box-border-radius-2xl: var(--__ac-box-border-radius-xl);
33
27
  --__ac-box-border-radius: var(--__ac-box-border-radius-xs);
34
28
 
35
- padding-inline: var(--__ac-box-padding-inline, var(--__ac-box-padding));
36
- padding-block: var(--__ac-box-padding-block, var(--__ac-box-padding));
37
- background-color: var(--__ac-box-background);
38
- border-style: solid;
39
- border-color: var(--__ac-box-border-color);
40
29
  border-radius: var(--__ac-box-border-radius);
30
+ }
31
+
32
+ .navds-box-shadow {
33
+ --__ac-box-shadow: initial;
34
+
41
35
  box-shadow: var(--__ac-box-shadow);
42
- border-width: var(--__ac-box-border-width, 0);
43
36
  }
44
37
 
45
38
  @media (min-width: 480px) {
46
- .navds-box {
47
- --__ac-box-padding: var(--__ac-box-padding-sm);
48
- --__ac-box-padding-inline: var(--__ac-box-padding-inline-sm);
49
- --__ac-box-padding-block: var(--__ac-box-padding-block-sm);
39
+ .navds-box-border-radius {
50
40
  --__ac-box-border-radius: var(--__ac-box-border-radius-sm);
51
41
  }
52
42
  }
53
43
 
54
44
  @media (min-width: 768px) {
55
- .navds-box {
56
- --__ac-box-padding: var(--__ac-box-padding-md);
57
- --__ac-box-padding-inline: var(--__ac-box-padding-inline-md);
58
- --__ac-box-padding-block: var(--__ac-box-padding-block-md);
45
+ .navds-box-border-radius {
59
46
  --__ac-box-border-radius: var(--__ac-box-border-radius-md);
60
47
  }
61
48
  }
62
49
 
63
50
  @media (min-width: 1024px) {
64
- .navds-box {
65
- --__ac-box-padding: var(--__ac-box-padding-lg);
66
- --__ac-box-padding-inline: var(--__ac-box-padding-inline-lg);
67
- --__ac-box-padding-block: var(--__ac-box-padding-block-lg);
51
+ .navds-box-border-radius {
68
52
  --__ac-box-border-radius: var(--__ac-box-border-radius-lg);
69
53
  }
70
54
  }
71
55
 
72
56
  @media (min-width: 1280px) {
73
- .navds-box {
74
- --__ac-box-padding: var(--__ac-box-padding-xl);
75
- --__ac-box-padding-inline: var(--__ac-box-padding-inline-xl);
76
- --__ac-box-padding-block: var(--__ac-box-padding-block-xl);
57
+ .navds-box-border-radius {
77
58
  --__ac-box-border-radius: var(--__ac-box-border-radius-xl);
78
59
  }
79
60
  }
80
61
 
81
62
  @media (min-width: 1440px) {
82
- .navds-box {
83
- --__ac-box-padding: var(--__ac-box-padding-2xl);
84
- --__ac-box-padding-inline: var(--__ac-box-padding-inline-2xl);
85
- --__ac-box-padding-block: var(--__ac-box-padding-block-2xl);
63
+ .navds-box-border-radius {
86
64
  --__ac-box-border-radius: var(--__ac-box-border-radius-2xl);
87
65
  }
88
66
  }
@@ -467,3 +445,781 @@
467
445
  display: none !important;
468
446
  }
469
447
  }
448
+
449
+ .navds-r-p {
450
+ --__ac-r-p-xs: initial;
451
+ --__ac-r-p-sm: var(--__ac-r-p-xs);
452
+ --__ac-r-p-md: var(--__ac-r-p-sm);
453
+ --__ac-r-p-lg: var(--__ac-r-p-md);
454
+ --__ac-r-p-xl: var(--__ac-r-p-lg);
455
+ --__ac-r-p-2xl: var(--__ac-r-p-xl);
456
+ --__ac-r-padding: var(--__ac-r-p-xs);
457
+
458
+ padding: var(--__ac-r-padding);
459
+ }
460
+
461
+ .navds-r-pi {
462
+ --__ac-r-pi-xs: initial;
463
+ --__ac-r-pi-sm: var(--__ac-r-pi-xs);
464
+ --__ac-r-pi-md: var(--__ac-r-pi-sm);
465
+ --__ac-r-pi-lg: var(--__ac-r-pi-md);
466
+ --__ac-r-pi-xl: var(--__ac-r-pi-lg);
467
+ --__ac-r-pi-2xl: var(--__ac-r-pi-xl);
468
+ --__ac-r-pi: var(--__ac-r-pi-xs);
469
+
470
+ padding-inline: var(--__ac-r-pi, var(--__ac-r-padding));
471
+ }
472
+
473
+ .navds-r-pb {
474
+ --__ac-r-pb-xs: initial;
475
+ --__ac-r-pb-sm: var(--__ac-r-pb-xs);
476
+ --__ac-r-pb-md: var(--__ac-r-pb-sm);
477
+ --__ac-r-pb-lg: var(--__ac-r-pb-md);
478
+ --__ac-r-pb-xl: var(--__ac-r-pb-lg);
479
+ --__ac-r-pb-2xl: var(--__ac-r-pb-xl);
480
+ --__ac-r-pb: var(--__ac-r-pb-xs);
481
+
482
+ padding-block: var(--__ac-r-pb, var(--__ac-r-padding));
483
+ }
484
+
485
+ .navds-r-m {
486
+ --__ac-r-m-xs: initial;
487
+ --__ac-r-m-sm: var(--__ac-r-m-xs);
488
+ --__ac-r-m-md: var(--__ac-r-m-sm);
489
+ --__ac-r-m-lg: var(--__ac-r-m-md);
490
+ --__ac-r-m-xl: var(--__ac-r-m-lg);
491
+ --__ac-r-m-2xl: var(--__ac-r-m-xl);
492
+ --__ac-r-margin: var(--__ac-r-m-xs);
493
+
494
+ margin: var(--__ac-r-margin);
495
+ }
496
+
497
+ .navds-r-mi {
498
+ --__ac-r-mi-xs: initial;
499
+ --__ac-r-mi-sm: var(--__ac-r-mi-xs);
500
+ --__ac-r-mi-md: var(--__ac-r-mi-sm);
501
+ --__ac-r-mi-lg: var(--__ac-r-mi-md);
502
+ --__ac-r-mi-xl: var(--__ac-r-mi-lg);
503
+ --__ac-r-mi-2xl: var(--__ac-r-mi-xl);
504
+ --__ac-r-mi: var(--__ac-r-mi-xs);
505
+
506
+ margin-inline: var(--__ac-r-mi, var(--__ac-r-margin));
507
+ }
508
+
509
+ .navds-r-mb {
510
+ --__ac-r-mb-xs: initial;
511
+ --__ac-r-mb-sm: var(--__ac-r-mb-xs);
512
+ --__ac-r-mb-md: var(--__ac-r-mb-sm);
513
+ --__ac-r-mb-lg: var(--__ac-r-mb-md);
514
+ --__ac-r-mb-xl: var(--__ac-r-mb-lg);
515
+ --__ac-r-mb-2xl: var(--__ac-r-mb-xl);
516
+ --__ac-r-mb: var(--__ac-r-mb-xs);
517
+
518
+ margin-block: var(--__ac-r-mb, var(--__ac-r-margin));
519
+ }
520
+
521
+ .navds-r-w {
522
+ --__ac-r-w-xs: initial;
523
+ --__ac-r-w-sm: var(--__ac-r-w-xs);
524
+ --__ac-r-w-md: var(--__ac-r-w-sm);
525
+ --__ac-r-w-lg: var(--__ac-r-w-md);
526
+ --__ac-r-w-xl: var(--__ac-r-w-lg);
527
+ --__ac-r-w-2xl: var(--__ac-r-w-xl);
528
+ --__ac-r-w: var(--__ac-r-w-xs);
529
+
530
+ width: var(--__ac-r-w);
531
+ }
532
+
533
+ .navds-r-minw {
534
+ --__ac-r-minw-xs: initial;
535
+ --__ac-r-minw-sm: var(--__ac-r-minw-xs);
536
+ --__ac-r-minw-md: var(--__ac-r-minw-sm);
537
+ --__ac-r-minw-lg: var(--__ac-r-minw-md);
538
+ --__ac-r-minw-xl: var(--__ac-r-minw-lg);
539
+ --__ac-r-minw-2xl: var(--__ac-r-minw-xl);
540
+ --__ac-r-minw: var(--__ac-r-minw-xs);
541
+
542
+ min-width: var(--__ac-r-minw);
543
+ }
544
+
545
+ .navds-r-maxw {
546
+ --__ac-r-maxw-xs: initial;
547
+ --__ac-r-maxw-sm: var(--__ac-r-maxw-xs);
548
+ --__ac-r-maxw-md: var(--__ac-r-maxw-sm);
549
+ --__ac-r-maxw-lg: var(--__ac-r-maxw-md);
550
+ --__ac-r-maxw-xl: var(--__ac-r-maxw-lg);
551
+ --__ac-r-maxw-2xl: var(--__ac-r-maxw-xl);
552
+ --__ac-r-maxw: var(--__ac-r-maxw-xs);
553
+
554
+ max-width: var(--__ac-r-maxw);
555
+ }
556
+
557
+ .navds-r-h {
558
+ --__ac-r-h-xs: initial;
559
+ --__ac-r-h-sm: var(--__ac-r-h-xs);
560
+ --__ac-r-h-md: var(--__ac-r-h-sm);
561
+ --__ac-r-h-lg: var(--__ac-r-h-md);
562
+ --__ac-r-h-xl: var(--__ac-r-h-lg);
563
+ --__ac-r-h-2xl: var(--__ac-r-h-xl);
564
+ --__ac-r-h: var(--__ac-r-h-xs);
565
+
566
+ height: var(--__ac-r-h);
567
+ }
568
+
569
+ .navds-r-minh {
570
+ --__ac-r-minh-xs: initial;
571
+ --__ac-r-minh-sm: var(--__ac-r-minh-xs);
572
+ --__ac-r-minh-md: var(--__ac-r-minh-sm);
573
+ --__ac-r-minh-lg: var(--__ac-r-minh-md);
574
+ --__ac-r-minh-xl: var(--__ac-r-minh-lg);
575
+ --__ac-r-minh-2xl: var(--__ac-r-minh-xl);
576
+ --__ac-r-minh: var(--__ac-r-minh-xs);
577
+
578
+ min-height: var(--__ac-r-minh);
579
+ }
580
+
581
+ .navds-r-maxh {
582
+ --__ac-r-maxh-xs: initial;
583
+ --__ac-r-maxh-sm: var(--__ac-r-maxh-xs);
584
+ --__ac-r-maxh-md: var(--__ac-r-maxh-sm);
585
+ --__ac-r-maxh-lg: var(--__ac-r-maxh-md);
586
+ --__ac-r-maxh-xl: var(--__ac-r-maxh-lg);
587
+ --__ac-r-maxh-2xl: var(--__ac-r-maxh-xl);
588
+ --__ac-r-maxh: var(--__ac-r-maxh-xs);
589
+
590
+ max-height: var(--__ac-r-maxh);
591
+ }
592
+
593
+ .navds-r-position {
594
+ --__ac-r-position-xs: initial;
595
+ --__ac-r-position-sm: var(--__ac-r-position-xs);
596
+ --__ac-r-position-md: var(--__ac-r-position-sm);
597
+ --__ac-r-position-lg: var(--__ac-r-position-md);
598
+ --__ac-r-position-xl: var(--__ac-r-position-lg);
599
+ --__ac-r-position-2xl: var(--__ac-r-position-xl);
600
+ --__ac-r-position: var(--__ac-r-position-xs);
601
+
602
+ position: var(--__ac-r-position);
603
+ }
604
+
605
+ .navds-r-inset {
606
+ --__ac-r-inset-xs: initial;
607
+ --__ac-r-inset-sm: var(--__ac-r-inset-xs);
608
+ --__ac-r-inset-md: var(--__ac-r-inset-sm);
609
+ --__ac-r-inset-lg: var(--__ac-r-inset-md);
610
+ --__ac-r-inset-xl: var(--__ac-r-inset-lg);
611
+ --__ac-r-inset-2xl: var(--__ac-r-inset-xl);
612
+ --__ac-r-inset: var(--__ac-r-inset-xs);
613
+
614
+ inset: var(--__ac-r-inset);
615
+ }
616
+
617
+ .navds-r-top {
618
+ --__ac-r-top-xs: initial;
619
+ --__ac-r-top-sm: var(--__ac-r-top-xs);
620
+ --__ac-r-top-md: var(--__ac-r-top-sm);
621
+ --__ac-r-top-lg: var(--__ac-r-top-md);
622
+ --__ac-r-top-xl: var(--__ac-r-top-lg);
623
+ --__ac-r-top-2xl: var(--__ac-r-top-xl);
624
+ --__ac-r-top: var(--__ac-r-top-xs);
625
+
626
+ top: var(--__ac-r-top);
627
+ }
628
+
629
+ .navds-r-right {
630
+ --__ac-r-right-xs: initial;
631
+ --__ac-r-right-sm: var(--__ac-r-right-xs);
632
+ --__ac-r-right-md: var(--__ac-r-right-sm);
633
+ --__ac-r-right-lg: var(--__ac-r-right-md);
634
+ --__ac-r-right-xl: var(--__ac-r-right-lg);
635
+ --__ac-r-right-2xl: var(--__ac-r-right-xl);
636
+ --__ac-r-right: var(--__ac-r-right-xs);
637
+
638
+ right: var(--__ac-r-right);
639
+ }
640
+
641
+ .navds-r-bottom {
642
+ --__ac-r-bottom-xs: initial;
643
+ --__ac-r-bottom-sm: var(--__ac-r-bottom-xs);
644
+ --__ac-r-bottom-md: var(--__ac-r-bottom-sm);
645
+ --__ac-r-bottom-lg: var(--__ac-r-bottom-md);
646
+ --__ac-r-bottom-xl: var(--__ac-r-bottom-lg);
647
+ --__ac-r-bottom-2xl: var(--__ac-r-bottom-xl);
648
+ --__ac-r-bottom: var(--__ac-r-bottom-xs);
649
+
650
+ bottom: var(--__ac-r-bottom);
651
+ }
652
+
653
+ .navds-r-left {
654
+ --__ac-r-left-xs: initial;
655
+ --__ac-r-left-sm: var(--__ac-r-left-xs);
656
+ --__ac-r-left-md: var(--__ac-r-left-sm);
657
+ --__ac-r-left-lg: var(--__ac-r-left-md);
658
+ --__ac-r-left-xl: var(--__ac-r-left-lg);
659
+ --__ac-r-left-2xl: var(--__ac-r-left-xl);
660
+ --__ac-r-left: var(--__ac-r-left-xs);
661
+
662
+ left: var(--__ac-r-left);
663
+ }
664
+
665
+ .navds-r-overflow {
666
+ --__ac-r-overflow-xs: initial;
667
+ --__ac-r-overflow-sm: var(--__ac-r-overflow-xs);
668
+ --__ac-r-overflow-md: var(--__ac-r-overflow-sm);
669
+ --__ac-r-overflow-lg: var(--__ac-r-overflow-md);
670
+ --__ac-r-overflow-xl: var(--__ac-r-overflow-lg);
671
+ --__ac-r-overflow-2xl: var(--__ac-r-overflow-xl);
672
+ --__ac-r-overflow: var(--__ac-r-overflow-xs);
673
+
674
+ overflow: var(--__ac-r-overflow);
675
+ }
676
+
677
+ .navds-r-overflowx {
678
+ --__ac-r-overflowx-xs: initial;
679
+ --__ac-r-overflowx-sm: var(--__ac-r-overflowx-xs);
680
+ --__ac-r-overflowx-md: var(--__ac-r-overflowx-sm);
681
+ --__ac-r-overflowx-lg: var(--__ac-r-overflowx-md);
682
+ --__ac-r-overflowx-xl: var(--__ac-r-overflowx-lg);
683
+ --__ac-r-overflowx-2xl: var(--__ac-r-overflowx-xl);
684
+ --__ac-r-overflowx: var(--__ac-r-overflowx-xs);
685
+
686
+ overflow-x: var(--__ac-r-overflowx);
687
+ }
688
+
689
+ .navds-r-overflowy {
690
+ --__ac-r-overflowy-xs: initial;
691
+ --__ac-r-overflowy-sm: var(--__ac-r-overflowy-xs);
692
+ --__ac-r-overflowy-md: var(--__ac-r-overflowy-sm);
693
+ --__ac-r-overflowy-lg: var(--__ac-r-overflowy-md);
694
+ --__ac-r-overflowy-xl: var(--__ac-r-overflowy-lg);
695
+ --__ac-r-overflowy-2xl: var(--__ac-r-overflowy-xl);
696
+ --__ac-r-overflowy: var(--__ac-r-overflowy-xs);
697
+
698
+ overflow-y: var(--__ac-r-overflowy);
699
+ }
700
+
701
+ .navds-r-flex-basis {
702
+ --__ac-r-flex-basis-xs: initial;
703
+ --__ac-r-flex-basis-sm: var(--__ac-r-flex-basis-xs);
704
+ --__ac-r-flex-basis-md: var(--__ac-r-flex-basis-sm);
705
+ --__ac-r-flex-basis-lg: var(--__ac-r-flex-basis-md);
706
+ --__ac-r-flex-basis-xl: var(--__ac-r-flex-basis-lg);
707
+ --__ac-r-flex-basis-2xl: var(--__ac-r-flex-basis-xl);
708
+ --__ac-r-flex-basis: var(--__ac-r-flex-basis-xs);
709
+
710
+ flex-basis: var(--__ac-r-flex-basis);
711
+ }
712
+
713
+ .navds-r-flex-grow {
714
+ --__ac-r-flex-grow-xs: initial;
715
+ --__ac-r-flex-grow-sm: var(--__ac-r-flex-grow-xs);
716
+ --__ac-r-flex-grow-md: var(--__ac-r-flex-grow-sm);
717
+ --__ac-r-flex-grow-lg: var(--__ac-r-flex-grow-md);
718
+ --__ac-r-flex-grow-xl: var(--__ac-r-flex-grow-lg);
719
+ --__ac-r-flex-grow-2xl: var(--__ac-r-flex-grow-xl);
720
+ --__ac-r-flex-grow: var(--__ac-r-flex-grow-xs);
721
+
722
+ flex-grow: var(--__ac-r-flex-grow);
723
+ }
724
+
725
+ .navds-r-flex-shrink {
726
+ --__ac-r-flex-shrink-xs: initial;
727
+ --__ac-r-flex-shrink-sm: var(--__ac-r-flex-shrink-xs);
728
+ --__ac-r-flex-shrink-md: var(--__ac-r-flex-shrink-sm);
729
+ --__ac-r-flex-shrink-lg: var(--__ac-r-flex-shrink-md);
730
+ --__ac-r-flex-shrink-xl: var(--__ac-r-flex-shrink-lg);
731
+ --__ac-r-flex-shrink-2xl: var(--__ac-r-flex-shrink-xl);
732
+ --__ac-r-flex-shrink: var(--__ac-r-flex-shrink-xs);
733
+
734
+ flex-shrink: var(--__ac-r-flex-shrink);
735
+ }
736
+
737
+ @media (min-width: 480px) {
738
+ .navds-r-p {
739
+ --__ac-r-padding: var(--__ac-r-p-sm);
740
+ }
741
+
742
+ .navds-r-pi {
743
+ --__ac-r-pi: var(--__ac-r-pi-sm);
744
+ }
745
+
746
+ .navds-r-pb {
747
+ --__ac-r-pb: var(--__ac-r-pb-sm);
748
+ }
749
+
750
+ .navds-r-m {
751
+ --__ac-r-margin: var(--__ac-r-m-sm);
752
+ }
753
+
754
+ .navds-r-mi {
755
+ --__ac-r-mi: var(--__ac-r-mi-sm);
756
+ }
757
+
758
+ .navds-r-mb {
759
+ --__ac-r-mb: var(--__ac-r-mb-sm);
760
+ }
761
+
762
+ .navds-r-w {
763
+ --__ac-r-w: var(--__ac-r-w-sm);
764
+ }
765
+
766
+ .navds-r-minw {
767
+ --__ac-r-minw: var(--__ac-r-minw-sm);
768
+ }
769
+
770
+ .navds-r-maxw {
771
+ --__ac-r-maxw: var(--__ac-r-maxw-sm);
772
+ }
773
+
774
+ .navds-r-h {
775
+ --__ac-r-h: var(--__ac-r-h-sm);
776
+ }
777
+
778
+ .navds-r-minh {
779
+ --__ac-r-minh: var(--__ac-r-minh-sm);
780
+ }
781
+
782
+ .navds-r-maxh {
783
+ --__ac-r-maxh: var(--__ac-r-maxh-sm);
784
+ }
785
+
786
+ .navds-r-position {
787
+ --__ac-r-position: var(--__ac-r-position-sm);
788
+ }
789
+
790
+ .navds-r-inset {
791
+ --__ac-r-inset: var(--__ac-r-inset-sm);
792
+ }
793
+
794
+ .navds-r-top {
795
+ --__ac-r-top: var(--__ac-r-top-sm);
796
+ }
797
+
798
+ .navds-r-right {
799
+ --__ac-r-right: var(--__ac-r-right-sm);
800
+ }
801
+
802
+ .navds-r-bottom {
803
+ --__ac-r-bottom: var(--__ac-r-bottom-sm);
804
+ }
805
+
806
+ .navds-r-left {
807
+ --__ac-r-left: var(--__ac-r-left-sm);
808
+ }
809
+
810
+ .navds-r-overflow {
811
+ --__ac-r-overflow: var(--__ac-r-overflow-sm);
812
+ }
813
+
814
+ .navds-r-overflowx {
815
+ --__ac-r-overflowx: var(--__ac-r-overflowx-sm);
816
+ }
817
+
818
+ .navds-r-overflowy {
819
+ --__ac-r-overflowy: var(--__ac-r-overflowy-sm);
820
+ }
821
+
822
+ .navds-r-flex-basis {
823
+ --__ac-r-flex-basis: var(--__ac-r-flex-basis-sm);
824
+ }
825
+
826
+ .navds-r-flex-grow {
827
+ --__ac-r-flex-grow: var(--__ac-r-flex-grow-sm);
828
+ }
829
+
830
+ .navds-r-flex-shrink {
831
+ --__ac-r-flex-shrink: var(--__ac-r-flex-shrink-sm);
832
+ }
833
+ }
834
+
835
+ @media (min-width: 768px) {
836
+ .navds-r-p {
837
+ --__ac-r-padding: var(--__ac-r-p-md);
838
+ }
839
+
840
+ .navds-r-pi {
841
+ --__ac-r-pi: var(--__ac-r-pi-md);
842
+ }
843
+
844
+ .navds-r-pb {
845
+ --__ac-r-pb: var(--__ac-r-pb-md);
846
+ }
847
+
848
+ .navds-r-m {
849
+ --__ac-r-margin: var(--__ac-r-m-md);
850
+ }
851
+
852
+ .navds-r-mi {
853
+ --__ac-r-mi: var(--__ac-r-mi-md);
854
+ }
855
+
856
+ .navds-r-mb {
857
+ --__ac-r-mb: var(--__ac-r-mb-md);
858
+ }
859
+
860
+ .navds-r-w {
861
+ --__ac-r-w: var(--__ac-r-w-md);
862
+ }
863
+
864
+ .navds-r-minw {
865
+ --__ac-r-minw: var(--__ac-r-minw-md);
866
+ }
867
+
868
+ .navds-r-maxw {
869
+ --__ac-r-maxw: var(--__ac-r-maxw-md);
870
+ }
871
+
872
+ .navds-r-h {
873
+ --__ac-r-h: var(--__ac-r-h-md);
874
+ }
875
+
876
+ .navds-r-minh {
877
+ --__ac-r-minh: var(--__ac-r-minh-md);
878
+ }
879
+
880
+ .navds-r-maxh {
881
+ --__ac-r-maxh: var(--__ac-r-maxh-md);
882
+ }
883
+
884
+ .navds-r-position {
885
+ --__ac-r-position: var(--__ac-r-position-md);
886
+ }
887
+
888
+ .navds-r-inset {
889
+ --__ac-r-inset: var(--__ac-r-inset-md);
890
+ }
891
+
892
+ .navds-r-top {
893
+ --__ac-r-top: var(--__ac-r-top-md);
894
+ }
895
+
896
+ .navds-r-right {
897
+ --__ac-r-right: var(--__ac-r-right-md);
898
+ }
899
+
900
+ .navds-r-bottom {
901
+ --__ac-r-bottom: var(--__ac-r-bottom-md);
902
+ }
903
+
904
+ .navds-r-left {
905
+ --__ac-r-left: var(--__ac-r-left-md);
906
+ }
907
+
908
+ .navds-r-overflow {
909
+ --__ac-r-overflow: var(--__ac-r-overflow-md);
910
+ }
911
+
912
+ .navds-r-overflowx {
913
+ --__ac-r-overflowx: var(--__ac-r-overflowx-md);
914
+ }
915
+
916
+ .navds-r-overflowy {
917
+ --__ac-r-overflowy: var(--__ac-r-overflowy-md);
918
+ }
919
+
920
+ .navds-r-flex-basis {
921
+ --__ac-r-flex-basis: var(--__ac-r-flex-basis-md);
922
+ }
923
+
924
+ .navds-r-flex-grow {
925
+ --__ac-r-flex-grow: var(--__ac-r-flex-grow-md);
926
+ }
927
+
928
+ .navds-r-flex-shrink {
929
+ --__ac-r-flex-shrink: var(--__ac-r-flex-shrink-md);
930
+ }
931
+ }
932
+
933
+ @media (min-width: 1024px) {
934
+ .navds-r-p {
935
+ --__ac-r-padding: var(--__ac-r-p-lg);
936
+ }
937
+
938
+ .navds-r-pi {
939
+ --__ac-r-pi: var(--__ac-r-pi-lg);
940
+ }
941
+
942
+ .navds-r-pb {
943
+ --__ac-r-pb: var(--__ac-r-pb-lg);
944
+ }
945
+
946
+ .navds-r-m {
947
+ --__ac-r-margin: var(--__ac-r-m-lg);
948
+ }
949
+
950
+ .navds-r-mi {
951
+ --__ac-r-mi: var(--__ac-r-mi-lg);
952
+ }
953
+
954
+ .navds-r-mb {
955
+ --__ac-r-mb: var(--__ac-r-mb-lg);
956
+ }
957
+
958
+ .navds-r-w {
959
+ --__ac-r-w: var(--__ac-r-w-lg);
960
+ }
961
+
962
+ .navds-r-minw {
963
+ --__ac-r-minw: var(--__ac-r-minw-lg);
964
+ }
965
+
966
+ .navds-r-maxw {
967
+ --__ac-r-maxw: var(--__ac-r-maxw-lg);
968
+ }
969
+
970
+ .navds-r-h {
971
+ --__ac-r-h: var(--__ac-r-h-lg);
972
+ }
973
+
974
+ .navds-r-minh {
975
+ --__ac-r-minh: var(--__ac-r-minh-lg);
976
+ }
977
+
978
+ .navds-r-maxh {
979
+ --__ac-r-maxh: var(--__ac-r-maxh-lg);
980
+ }
981
+
982
+ .navds-r-position {
983
+ --__ac-r-position: var(--__ac-r-position-lg);
984
+ }
985
+
986
+ .navds-r-inset {
987
+ --__ac-r-inset: var(--__ac-r-inset-lg);
988
+ }
989
+
990
+ .navds-r-top {
991
+ --__ac-r-top: var(--__ac-r-top-lg);
992
+ }
993
+
994
+ .navds-r-right {
995
+ --__ac-r-right: var(--__ac-r-right-lg);
996
+ }
997
+
998
+ .navds-r-bottom {
999
+ --__ac-r-bottom: var(--__ac-r-bottom-lg);
1000
+ }
1001
+
1002
+ .navds-r-left {
1003
+ --__ac-r-left: var(--__ac-r-left-lg);
1004
+ }
1005
+
1006
+ .navds-r-overflow {
1007
+ --__ac-r-overflow: var(--__ac-r-overflow-lg);
1008
+ }
1009
+
1010
+ .navds-r-overflowx {
1011
+ --__ac-r-overflowx: var(--__ac-r-overflowx-lg);
1012
+ }
1013
+
1014
+ .navds-r-overflowy {
1015
+ --__ac-r-overflowy: var(--__ac-r-overflowy-lg);
1016
+ }
1017
+
1018
+ .navds-r-flex-basis {
1019
+ --__ac-r-flex-basis: var(--__ac-r-flex-basis-lg);
1020
+ }
1021
+
1022
+ .navds-r-flex-grow {
1023
+ --__ac-r-flex-grow: var(--__ac-r-flex-grow-lg);
1024
+ }
1025
+
1026
+ .navds-r-flex-shrink {
1027
+ --__ac-r-flex-shrink: var(--__ac-r-flex-shrink-lg);
1028
+ }
1029
+ }
1030
+
1031
+ @media (min-width: 1280px) {
1032
+ .navds-r-p {
1033
+ --__ac-r-padding: var(--__ac-r-p-xl);
1034
+ }
1035
+
1036
+ .navds-r-pi {
1037
+ --__ac-r-pi: var(--__ac-r-pi-xl);
1038
+ }
1039
+
1040
+ .navds-r-pb {
1041
+ --__ac-r-pb: var(--__ac-r-pb-xl);
1042
+ }
1043
+
1044
+ .navds-r-m {
1045
+ --__ac-r-margin: var(--__ac-r-m-xl);
1046
+ }
1047
+
1048
+ .navds-r-mi {
1049
+ --__ac-r-mi: var(--__ac-r-mi-xl);
1050
+ }
1051
+
1052
+ .navds-r-mb {
1053
+ --__ac-r-mb: var(--__ac-r-mb-xl);
1054
+ }
1055
+
1056
+ .navds-r-w {
1057
+ --__ac-r-w: var(--__ac-r-w-xl);
1058
+ }
1059
+
1060
+ .navds-r-minw {
1061
+ --__ac-r-minw: var(--__ac-r-minw-xl);
1062
+ }
1063
+
1064
+ .navds-r-maxw {
1065
+ --__ac-r-maxw: var(--__ac-r-maxw-xl);
1066
+ }
1067
+
1068
+ .navds-r-h {
1069
+ --__ac-r-h: var(--__ac-r-h-xl);
1070
+ }
1071
+
1072
+ .navds-r-minh {
1073
+ --__ac-r-minh: var(--__ac-r-minh-xl);
1074
+ }
1075
+
1076
+ .navds-r-maxh {
1077
+ --__ac-r-maxh: var(--__ac-r-maxh-xl);
1078
+ }
1079
+
1080
+ .navds-r-position {
1081
+ --__ac-r-position: var(--__ac-r-position-xl);
1082
+ }
1083
+
1084
+ .navds-r-inset {
1085
+ --__ac-r-inset: var(--__ac-r-inset-xl);
1086
+ }
1087
+
1088
+ .navds-r-top {
1089
+ --__ac-r-top: var(--__ac-r-top-xl);
1090
+ }
1091
+
1092
+ .navds-r-right {
1093
+ --__ac-r-right: var(--__ac-r-right-xl);
1094
+ }
1095
+
1096
+ .navds-r-bottom {
1097
+ --__ac-r-bottom: var(--__ac-r-bottom-xl);
1098
+ }
1099
+
1100
+ .navds-r-left {
1101
+ --__ac-r-left: var(--__ac-r-left-xl);
1102
+ }
1103
+
1104
+ .navds-r-overflow {
1105
+ --__ac-r-overflow: var(--__ac-r-overflow-xl);
1106
+ }
1107
+
1108
+ .navds-r-overflowx {
1109
+ --__ac-r-overflowx: var(--__ac-r-overflowx-xl);
1110
+ }
1111
+
1112
+ .navds-r-overflowy {
1113
+ --__ac-r-overflowy: var(--__ac-r-overflowy-xl);
1114
+ }
1115
+
1116
+ .navds-r-flex-basis {
1117
+ --__ac-r-flex-basis: var(--__ac-r-flex-basis-xl);
1118
+ }
1119
+
1120
+ .navds-r-flex-grow {
1121
+ --__ac-r-flex-grow: var(--__ac-r-flex-grow-xl);
1122
+ }
1123
+
1124
+ .navds-r-flex-shrink {
1125
+ --__ac-r-flex-shrink: var(--__ac-r-flex-shrink-xl);
1126
+ }
1127
+ }
1128
+
1129
+ @media (min-width: 1440px) {
1130
+ .navds-r-p {
1131
+ --__ac-r-padding: var(--__ac-r-p-2xl);
1132
+ }
1133
+
1134
+ .navds-r-pi {
1135
+ --__ac-r-pi: var(--__ac-r-pi-2xl);
1136
+ }
1137
+
1138
+ .navds-r-pb {
1139
+ --__ac-r-pb: var(--__ac-r-pb-2xl);
1140
+ }
1141
+
1142
+ .navds-r-m {
1143
+ --__ac-r-margin: var(--__ac-r-m-2xl);
1144
+ }
1145
+
1146
+ .navds-r-mi {
1147
+ --__ac-r-mi: var(--__ac-r-mi-2xl);
1148
+ }
1149
+
1150
+ .navds-r-mb {
1151
+ --__ac-r-mb: var(--__ac-r-mb-2xl);
1152
+ }
1153
+
1154
+ .navds-r-w {
1155
+ --__ac-r-w: var(--__ac-r-w-2xl);
1156
+ }
1157
+
1158
+ .navds-r-minw {
1159
+ --__ac-r-minw: var(--__ac-r-minw-2xl);
1160
+ }
1161
+
1162
+ .navds-r-maxw {
1163
+ --__ac-r-maxw: var(--__ac-r-maxw-2xl);
1164
+ }
1165
+
1166
+ .navds-r-h {
1167
+ --__ac-r-h: var(--__ac-r-h-2xl);
1168
+ }
1169
+
1170
+ .navds-r-minh {
1171
+ --__ac-r-minh: var(--__ac-r-minh-2xl);
1172
+ }
1173
+
1174
+ .navds-r-maxh {
1175
+ --__ac-r-maxh: var(--__ac-r-maxh-2xl);
1176
+ }
1177
+
1178
+ .navds-r-position {
1179
+ --__ac-r-position: var(--__ac-r-position-2xl);
1180
+ }
1181
+
1182
+ .navds-r-inset {
1183
+ --__ac-r-inset: var(--__ac-r-inset-2xl);
1184
+ }
1185
+
1186
+ .navds-r-top {
1187
+ --__ac-r-top: var(--__ac-r-top-2xl);
1188
+ }
1189
+
1190
+ .navds-r-right {
1191
+ --__ac-r-right: var(--__ac-r-right-2xl);
1192
+ }
1193
+
1194
+ .navds-r-bottom {
1195
+ --__ac-r-bottom: var(--__ac-r-bottom-2xl);
1196
+ }
1197
+
1198
+ .navds-r-left {
1199
+ --__ac-r-left: var(--__ac-r-left-2xl);
1200
+ }
1201
+
1202
+ .navds-r-overflow {
1203
+ --__ac-r-overflow: var(--__ac-r-overflow-2xl);
1204
+ }
1205
+
1206
+ .navds-r-overflowx {
1207
+ --__ac-r-overflowx: var(--__ac-r-overflowx-2xl);
1208
+ }
1209
+
1210
+ .navds-r-overflowy {
1211
+ --__ac-r-overflowy: var(--__ac-r-overflowy-2xl);
1212
+ }
1213
+
1214
+ .navds-r-flex-basis {
1215
+ --__ac-r-flex-basis: var(--__ac-r-flex-basis-2xl);
1216
+ }
1217
+
1218
+ .navds-r-flex-grow {
1219
+ --__ac-r-flex-grow: var(--__ac-r-flex-grow-2xl);
1220
+ }
1221
+
1222
+ .navds-r-flex-shrink {
1223
+ --__ac-r-flex-shrink: var(--__ac-r-flex-shrink-2xl);
1224
+ }
1225
+ }