@paperless/angular 2.6.0 → 2.6.2
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/esm2020/lib/modules/table/components/table-cell/table-cell.component.mjs +11 -11
- package/fesm2015/paperless-angular.mjs +10 -10
- package/fesm2015/paperless-angular.mjs.map +1 -1
- package/fesm2020/paperless-angular.mjs +10 -10
- package/fesm2020/paperless-angular.mjs.map +1 -1
- package/package.json +1 -1
- package/paperless.css +196 -160
package/package.json
CHANGED
package/paperless.css
CHANGED
|
@@ -100,52 +100,56 @@
|
|
|
100
100
|
height: 1.5rem !important
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
-
.w-
|
|
104
|
-
width:
|
|
103
|
+
.w-6 {
|
|
104
|
+
width: 1.5rem !important
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
-
.w
|
|
108
|
-
width:
|
|
107
|
+
.w-\[calc\(\$\{sizes\.default\}\/12\*100\%-0\.5rem\)\] {
|
|
108
|
+
width: calc(${sizes.default} / 12 * 100% - 0.5rem) !important
|
|
109
109
|
}
|
|
110
110
|
|
|
111
|
-
.w
|
|
112
|
-
width:
|
|
111
|
+
.w-\[calc\(1\/12\*100\%-0\.5rem\)\] {
|
|
112
|
+
width: calc(1 / 12 * 100% - 0.5rem) !important
|
|
113
113
|
}
|
|
114
114
|
|
|
115
|
-
.w
|
|
116
|
-
width:
|
|
115
|
+
.w-\[calc\(10\/12\*100\%-0\.5rem\)\] {
|
|
116
|
+
width: calc(10 / 12 * 100% - 0.5rem) !important
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
-
.w
|
|
120
|
-
width:
|
|
119
|
+
.w-\[calc\(11\/12\*100\%-0\.5rem\)\] {
|
|
120
|
+
width: calc(11 / 12 * 100% - 0.5rem) !important
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
-
.w
|
|
124
|
-
width:
|
|
123
|
+
.w-\[calc\(2\/12\*100\%-0\.5rem\)\] {
|
|
124
|
+
width: calc(2 / 12 * 100% - 0.5rem) !important
|
|
125
125
|
}
|
|
126
126
|
|
|
127
|
-
.w
|
|
128
|
-
width:
|
|
127
|
+
.w-\[calc\(3\/12\*100\%-0\.5rem\)\] {
|
|
128
|
+
width: calc(3 / 12 * 100% - 0.5rem) !important
|
|
129
129
|
}
|
|
130
130
|
|
|
131
|
-
.w
|
|
132
|
-
width:
|
|
131
|
+
.w-\[calc\(4\/12\*100\%-0\.5rem\)\] {
|
|
132
|
+
width: calc(4 / 12 * 100% - 0.5rem) !important
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
-
.w
|
|
136
|
-
width:
|
|
135
|
+
.w-\[calc\(5\/12\*100\%-0\.5rem\)\] {
|
|
136
|
+
width: calc(5 / 12 * 100% - 0.5rem) !important
|
|
137
137
|
}
|
|
138
138
|
|
|
139
|
-
.w
|
|
140
|
-
width:
|
|
139
|
+
.w-\[calc\(6\/12\*100\%-0\.5rem\)\] {
|
|
140
|
+
width: calc(6 / 12 * 100% - 0.5rem) !important
|
|
141
141
|
}
|
|
142
142
|
|
|
143
|
-
.w
|
|
144
|
-
width:
|
|
143
|
+
.w-\[calc\(7\/12\*100\%-0\.5rem\)\] {
|
|
144
|
+
width: calc(7 / 12 * 100% - 0.5rem) !important
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
-
.w
|
|
148
|
-
width:
|
|
147
|
+
.w-\[calc\(8\/12\*100\%-0\.5rem\)\] {
|
|
148
|
+
width: calc(8 / 12 * 100% - 0.5rem) !important
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.w-\[calc\(9\/12\*100\%-0\.5rem\)\] {
|
|
152
|
+
width: calc(9 / 12 * 100% - 0.5rem) !important
|
|
149
153
|
}
|
|
150
154
|
|
|
151
155
|
.w-auto {
|
|
@@ -156,10 +160,6 @@
|
|
|
156
160
|
width: 100% !important
|
|
157
161
|
}
|
|
158
162
|
|
|
159
|
-
.min-w-0 {
|
|
160
|
-
min-width: 0px !important
|
|
161
|
-
}
|
|
162
|
-
|
|
163
163
|
.flex-1 {
|
|
164
164
|
flex: 1 1 0% !important
|
|
165
165
|
}
|
|
@@ -264,6 +264,10 @@
|
|
|
264
264
|
overflow-x: auto !important
|
|
265
265
|
}
|
|
266
266
|
|
|
267
|
+
.text-ellipsis {
|
|
268
|
+
text-overflow: ellipsis !important
|
|
269
|
+
}
|
|
270
|
+
|
|
267
271
|
.rounded {
|
|
268
272
|
border-radius: 0.25rem !important
|
|
269
273
|
}
|
|
@@ -280,6 +284,18 @@
|
|
|
280
284
|
padding-right: 1rem !important
|
|
281
285
|
}
|
|
282
286
|
|
|
287
|
+
.text-center {
|
|
288
|
+
text-align: center !important
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.text-start {
|
|
292
|
+
text-align: start !important
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.text-end {
|
|
296
|
+
text-align: end !important
|
|
297
|
+
}
|
|
298
|
+
|
|
283
299
|
.font-semibold {
|
|
284
300
|
font-weight: 600 !important
|
|
285
301
|
}
|
|
@@ -511,48 +527,48 @@
|
|
|
511
527
|
display: none !important
|
|
512
528
|
}
|
|
513
529
|
|
|
514
|
-
.tablet\:w
|
|
515
|
-
width:
|
|
530
|
+
.tablet\:w-\[calc\(1\/12\*100\%-0\.5rem\)\] {
|
|
531
|
+
width: calc(1 / 12 * 100% - 0.5rem) !important
|
|
516
532
|
}
|
|
517
533
|
|
|
518
|
-
.tablet\:w
|
|
519
|
-
width:
|
|
534
|
+
.tablet\:w-\[calc\(10\/12\*100\%-0\.5rem\)\] {
|
|
535
|
+
width: calc(10 / 12 * 100% - 0.5rem) !important
|
|
520
536
|
}
|
|
521
537
|
|
|
522
|
-
.tablet\:w
|
|
523
|
-
width:
|
|
538
|
+
.tablet\:w-\[calc\(11\/12\*100\%-0\.5rem\)\] {
|
|
539
|
+
width: calc(11 / 12 * 100% - 0.5rem) !important
|
|
524
540
|
}
|
|
525
541
|
|
|
526
|
-
.tablet\:w
|
|
527
|
-
width:
|
|
542
|
+
.tablet\:w-\[calc\(2\/12\*100\%-0\.5rem\)\] {
|
|
543
|
+
width: calc(2 / 12 * 100% - 0.5rem) !important
|
|
528
544
|
}
|
|
529
545
|
|
|
530
|
-
.tablet\:w
|
|
531
|
-
width:
|
|
546
|
+
.tablet\:w-\[calc\(3\/12\*100\%-0\.5rem\)\] {
|
|
547
|
+
width: calc(3 / 12 * 100% - 0.5rem) !important
|
|
532
548
|
}
|
|
533
549
|
|
|
534
|
-
.tablet\:w
|
|
535
|
-
width:
|
|
550
|
+
.tablet\:w-\[calc\(4\/12\*100\%-0\.5rem\)\] {
|
|
551
|
+
width: calc(4 / 12 * 100% - 0.5rem) !important
|
|
536
552
|
}
|
|
537
553
|
|
|
538
|
-
.tablet\:w
|
|
539
|
-
width:
|
|
554
|
+
.tablet\:w-\[calc\(5\/12\*100\%-0\.5rem\)\] {
|
|
555
|
+
width: calc(5 / 12 * 100% - 0.5rem) !important
|
|
540
556
|
}
|
|
541
557
|
|
|
542
|
-
.tablet\:w
|
|
543
|
-
width:
|
|
558
|
+
.tablet\:w-\[calc\(6\/12\*100\%-0\.5rem\)\] {
|
|
559
|
+
width: calc(6 / 12 * 100% - 0.5rem) !important
|
|
544
560
|
}
|
|
545
561
|
|
|
546
|
-
.tablet\:w
|
|
547
|
-
width:
|
|
562
|
+
.tablet\:w-\[calc\(7\/12\*100\%-0\.5rem\)\] {
|
|
563
|
+
width: calc(7 / 12 * 100% - 0.5rem) !important
|
|
548
564
|
}
|
|
549
565
|
|
|
550
|
-
.tablet\:w
|
|
551
|
-
width:
|
|
566
|
+
.tablet\:w-\[calc\(8\/12\*100\%-0\.5rem\)\] {
|
|
567
|
+
width: calc(8 / 12 * 100% - 0.5rem) !important
|
|
552
568
|
}
|
|
553
569
|
|
|
554
|
-
.tablet\:w
|
|
555
|
-
width:
|
|
570
|
+
.tablet\:w-\[calc\(9\/12\*100\%-0\.5rem\)\] {
|
|
571
|
+
width: calc(9 / 12 * 100% - 0.5rem) !important
|
|
556
572
|
}
|
|
557
573
|
|
|
558
574
|
.tablet\:w-auto {
|
|
@@ -585,48 +601,52 @@
|
|
|
585
601
|
display: none !important
|
|
586
602
|
}
|
|
587
603
|
|
|
588
|
-
.desktop-xs\:w
|
|
589
|
-
width:
|
|
604
|
+
.desktop-xs\:w-\[calc\(1\/12\*100\%-0\.5rem\)\] {
|
|
605
|
+
width: calc(1 / 12 * 100% - 0.5rem) !important
|
|
590
606
|
}
|
|
591
607
|
|
|
592
|
-
.desktop-xs\:w
|
|
593
|
-
width:
|
|
608
|
+
.desktop-xs\:w-\[calc\(10\/12\*100\%-0\.5rem\)\] {
|
|
609
|
+
width: calc(10 / 12 * 100% - 0.5rem) !important
|
|
594
610
|
}
|
|
595
611
|
|
|
596
|
-
.desktop-xs\:w
|
|
597
|
-
width:
|
|
612
|
+
.desktop-xs\:w-\[calc\(11\/12\*100\%-0\.5rem\)\] {
|
|
613
|
+
width: calc(11 / 12 * 100% - 0.5rem) !important
|
|
598
614
|
}
|
|
599
615
|
|
|
600
|
-
.desktop-xs\:w
|
|
601
|
-
width:
|
|
616
|
+
.desktop-xs\:w-\[calc\(12\/12\*100\%-0\.5rem\)\] {
|
|
617
|
+
width: calc(12 / 12 * 100% - 0.5rem) !important
|
|
602
618
|
}
|
|
603
619
|
|
|
604
|
-
.desktop-xs\:w
|
|
605
|
-
width:
|
|
620
|
+
.desktop-xs\:w-\[calc\(2\/12\*100\%-0\.5rem\)\] {
|
|
621
|
+
width: calc(2 / 12 * 100% - 0.5rem) !important
|
|
606
622
|
}
|
|
607
623
|
|
|
608
|
-
.desktop-xs\:w
|
|
609
|
-
width:
|
|
624
|
+
.desktop-xs\:w-\[calc\(3\/12\*100\%-0\.5rem\)\] {
|
|
625
|
+
width: calc(3 / 12 * 100% - 0.5rem) !important
|
|
610
626
|
}
|
|
611
627
|
|
|
612
|
-
.desktop-xs\:w
|
|
613
|
-
width:
|
|
628
|
+
.desktop-xs\:w-\[calc\(4\/12\*100\%-0\.5rem\)\] {
|
|
629
|
+
width: calc(4 / 12 * 100% - 0.5rem) !important
|
|
614
630
|
}
|
|
615
631
|
|
|
616
|
-
.desktop-xs\:w
|
|
617
|
-
width:
|
|
632
|
+
.desktop-xs\:w-\[calc\(5\/12\*100\%-0\.5rem\)\] {
|
|
633
|
+
width: calc(5 / 12 * 100% - 0.5rem) !important
|
|
618
634
|
}
|
|
619
635
|
|
|
620
|
-
.desktop-xs\:w
|
|
621
|
-
width:
|
|
636
|
+
.desktop-xs\:w-\[calc\(6\/12\*100\%-0\.5rem\)\] {
|
|
637
|
+
width: calc(6 / 12 * 100% - 0.5rem) !important
|
|
622
638
|
}
|
|
623
639
|
|
|
624
|
-
.desktop-xs\:w
|
|
625
|
-
width:
|
|
640
|
+
.desktop-xs\:w-\[calc\(7\/12\*100\%-0\.5rem\)\] {
|
|
641
|
+
width: calc(7 / 12 * 100% - 0.5rem) !important
|
|
626
642
|
}
|
|
627
643
|
|
|
628
|
-
.desktop-xs\:w
|
|
629
|
-
width:
|
|
644
|
+
.desktop-xs\:w-\[calc\(8\/12\*100\%-0\.5rem\)\] {
|
|
645
|
+
width: calc(8 / 12 * 100% - 0.5rem) !important
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.desktop-xs\:w-\[calc\(9\/12\*100\%-0\.5rem\)\] {
|
|
649
|
+
width: calc(9 / 12 * 100% - 0.5rem) !important
|
|
630
650
|
}
|
|
631
651
|
|
|
632
652
|
.desktop-xs\:pr-0 {
|
|
@@ -655,48 +675,52 @@
|
|
|
655
675
|
display: none !important
|
|
656
676
|
}
|
|
657
677
|
|
|
658
|
-
.desktop-sm\:w
|
|
659
|
-
width:
|
|
678
|
+
.desktop-sm\:w-\[calc\(1\/12\*100\%-0\.5rem\)\] {
|
|
679
|
+
width: calc(1 / 12 * 100% - 0.5rem) !important
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
.desktop-sm\:w-\[calc\(10\/12\*100\%-0\.5rem\)\] {
|
|
683
|
+
width: calc(10 / 12 * 100% - 0.5rem) !important
|
|
660
684
|
}
|
|
661
685
|
|
|
662
|
-
.desktop-sm\:w
|
|
663
|
-
width:
|
|
686
|
+
.desktop-sm\:w-\[calc\(11\/12\*100\%-0\.5rem\)\] {
|
|
687
|
+
width: calc(11 / 12 * 100% - 0.5rem) !important
|
|
664
688
|
}
|
|
665
689
|
|
|
666
|
-
.desktop-sm\:w
|
|
667
|
-
width:
|
|
690
|
+
.desktop-sm\:w-\[calc\(12\/12\*100\%-0\.5rem\)\] {
|
|
691
|
+
width: calc(12 / 12 * 100% - 0.5rem) !important
|
|
668
692
|
}
|
|
669
693
|
|
|
670
|
-
.desktop-sm\:w
|
|
671
|
-
width:
|
|
694
|
+
.desktop-sm\:w-\[calc\(2\/12\*100\%-0\.5rem\)\] {
|
|
695
|
+
width: calc(2 / 12 * 100% - 0.5rem) !important
|
|
672
696
|
}
|
|
673
697
|
|
|
674
|
-
.desktop-sm\:w
|
|
675
|
-
width:
|
|
698
|
+
.desktop-sm\:w-\[calc\(3\/12\*100\%-0\.5rem\)\] {
|
|
699
|
+
width: calc(3 / 12 * 100% - 0.5rem) !important
|
|
676
700
|
}
|
|
677
701
|
|
|
678
|
-
.desktop-sm\:w
|
|
679
|
-
width:
|
|
702
|
+
.desktop-sm\:w-\[calc\(4\/12\*100\%-0\.5rem\)\] {
|
|
703
|
+
width: calc(4 / 12 * 100% - 0.5rem) !important
|
|
680
704
|
}
|
|
681
705
|
|
|
682
|
-
.desktop-sm\:w
|
|
683
|
-
width:
|
|
706
|
+
.desktop-sm\:w-\[calc\(5\/12\*100\%-0\.5rem\)\] {
|
|
707
|
+
width: calc(5 / 12 * 100% - 0.5rem) !important
|
|
684
708
|
}
|
|
685
709
|
|
|
686
|
-
.desktop-sm\:w
|
|
687
|
-
width:
|
|
710
|
+
.desktop-sm\:w-\[calc\(6\/12\*100\%-0\.5rem\)\] {
|
|
711
|
+
width: calc(6 / 12 * 100% - 0.5rem) !important
|
|
688
712
|
}
|
|
689
713
|
|
|
690
|
-
.desktop-sm\:w
|
|
691
|
-
width:
|
|
714
|
+
.desktop-sm\:w-\[calc\(7\/12\*100\%-0\.5rem\)\] {
|
|
715
|
+
width: calc(7 / 12 * 100% - 0.5rem) !important
|
|
692
716
|
}
|
|
693
717
|
|
|
694
|
-
.desktop-sm\:w
|
|
695
|
-
width:
|
|
718
|
+
.desktop-sm\:w-\[calc\(8\/12\*100\%-0\.5rem\)\] {
|
|
719
|
+
width: calc(8 / 12 * 100% - 0.5rem) !important
|
|
696
720
|
}
|
|
697
721
|
|
|
698
|
-
.desktop-sm\:w
|
|
699
|
-
width:
|
|
722
|
+
.desktop-sm\:w-\[calc\(9\/12\*100\%-0\.5rem\)\] {
|
|
723
|
+
width: calc(9 / 12 * 100% - 0.5rem) !important
|
|
700
724
|
}
|
|
701
725
|
|
|
702
726
|
.desktop-sm\:pr-0 {
|
|
@@ -725,48 +749,52 @@
|
|
|
725
749
|
display: none !important
|
|
726
750
|
}
|
|
727
751
|
|
|
728
|
-
.desktop\:w
|
|
729
|
-
width:
|
|
752
|
+
.desktop\:w-\[calc\(1\/12\*100\%-0\.5rem\)\] {
|
|
753
|
+
width: calc(1 / 12 * 100% - 0.5rem) !important
|
|
730
754
|
}
|
|
731
755
|
|
|
732
|
-
.desktop\:w
|
|
733
|
-
width:
|
|
756
|
+
.desktop\:w-\[calc\(10\/12\*100\%-0\.5rem\)\] {
|
|
757
|
+
width: calc(10 / 12 * 100% - 0.5rem) !important
|
|
734
758
|
}
|
|
735
759
|
|
|
736
|
-
.desktop\:w
|
|
737
|
-
width:
|
|
760
|
+
.desktop\:w-\[calc\(11\/12\*100\%-0\.5rem\)\] {
|
|
761
|
+
width: calc(11 / 12 * 100% - 0.5rem) !important
|
|
738
762
|
}
|
|
739
763
|
|
|
740
|
-
.desktop\:w
|
|
741
|
-
width:
|
|
764
|
+
.desktop\:w-\[calc\(12\/12\*100\%-0\.5rem\)\] {
|
|
765
|
+
width: calc(12 / 12 * 100% - 0.5rem) !important
|
|
742
766
|
}
|
|
743
767
|
|
|
744
|
-
.desktop\:w
|
|
745
|
-
width:
|
|
768
|
+
.desktop\:w-\[calc\(2\/12\*100\%-0\.5rem\)\] {
|
|
769
|
+
width: calc(2 / 12 * 100% - 0.5rem) !important
|
|
746
770
|
}
|
|
747
771
|
|
|
748
|
-
.desktop\:w
|
|
749
|
-
width:
|
|
772
|
+
.desktop\:w-\[calc\(3\/12\*100\%-0\.5rem\)\] {
|
|
773
|
+
width: calc(3 / 12 * 100% - 0.5rem) !important
|
|
750
774
|
}
|
|
751
775
|
|
|
752
|
-
.desktop\:w
|
|
753
|
-
width:
|
|
776
|
+
.desktop\:w-\[calc\(4\/12\*100\%-0\.5rem\)\] {
|
|
777
|
+
width: calc(4 / 12 * 100% - 0.5rem) !important
|
|
754
778
|
}
|
|
755
779
|
|
|
756
|
-
.desktop\:w
|
|
757
|
-
width:
|
|
780
|
+
.desktop\:w-\[calc\(5\/12\*100\%-0\.5rem\)\] {
|
|
781
|
+
width: calc(5 / 12 * 100% - 0.5rem) !important
|
|
758
782
|
}
|
|
759
783
|
|
|
760
|
-
.desktop\:w
|
|
761
|
-
width:
|
|
784
|
+
.desktop\:w-\[calc\(6\/12\*100\%-0\.5rem\)\] {
|
|
785
|
+
width: calc(6 / 12 * 100% - 0.5rem) !important
|
|
762
786
|
}
|
|
763
787
|
|
|
764
|
-
.desktop\:w
|
|
765
|
-
width:
|
|
788
|
+
.desktop\:w-\[calc\(7\/12\*100\%-0\.5rem\)\] {
|
|
789
|
+
width: calc(7 / 12 * 100% - 0.5rem) !important
|
|
766
790
|
}
|
|
767
791
|
|
|
768
|
-
.desktop\:w
|
|
769
|
-
width:
|
|
792
|
+
.desktop\:w-\[calc\(8\/12\*100\%-0\.5rem\)\] {
|
|
793
|
+
width: calc(8 / 12 * 100% - 0.5rem) !important
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
.desktop\:w-\[calc\(9\/12\*100\%-0\.5rem\)\] {
|
|
797
|
+
width: calc(9 / 12 * 100% - 0.5rem) !important
|
|
770
798
|
}
|
|
771
799
|
|
|
772
800
|
.desktop\:pr-0 {
|
|
@@ -795,48 +823,52 @@
|
|
|
795
823
|
display: none !important
|
|
796
824
|
}
|
|
797
825
|
|
|
798
|
-
.desktop-lg\:w
|
|
799
|
-
width:
|
|
826
|
+
.desktop-lg\:w-\[calc\(1\/12\*100\%-0\.5rem\)\] {
|
|
827
|
+
width: calc(1 / 12 * 100% - 0.5rem) !important
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
.desktop-lg\:w-\[calc\(10\/12\*100\%-0\.5rem\)\] {
|
|
831
|
+
width: calc(10 / 12 * 100% - 0.5rem) !important
|
|
800
832
|
}
|
|
801
833
|
|
|
802
|
-
.desktop-lg\:w
|
|
803
|
-
width:
|
|
834
|
+
.desktop-lg\:w-\[calc\(11\/12\*100\%-0\.5rem\)\] {
|
|
835
|
+
width: calc(11 / 12 * 100% - 0.5rem) !important
|
|
804
836
|
}
|
|
805
837
|
|
|
806
|
-
.desktop-lg\:w
|
|
807
|
-
width:
|
|
838
|
+
.desktop-lg\:w-\[calc\(12\/12\*100\%-0\.5rem\)\] {
|
|
839
|
+
width: calc(12 / 12 * 100% - 0.5rem) !important
|
|
808
840
|
}
|
|
809
841
|
|
|
810
|
-
.desktop-lg\:w
|
|
811
|
-
width:
|
|
842
|
+
.desktop-lg\:w-\[calc\(2\/12\*100\%-0\.5rem\)\] {
|
|
843
|
+
width: calc(2 / 12 * 100% - 0.5rem) !important
|
|
812
844
|
}
|
|
813
845
|
|
|
814
|
-
.desktop-lg\:w
|
|
815
|
-
width:
|
|
846
|
+
.desktop-lg\:w-\[calc\(3\/12\*100\%-0\.5rem\)\] {
|
|
847
|
+
width: calc(3 / 12 * 100% - 0.5rem) !important
|
|
816
848
|
}
|
|
817
849
|
|
|
818
|
-
.desktop-lg\:w
|
|
819
|
-
width:
|
|
850
|
+
.desktop-lg\:w-\[calc\(4\/12\*100\%-0\.5rem\)\] {
|
|
851
|
+
width: calc(4 / 12 * 100% - 0.5rem) !important
|
|
820
852
|
}
|
|
821
853
|
|
|
822
|
-
.desktop-lg\:w
|
|
823
|
-
width:
|
|
854
|
+
.desktop-lg\:w-\[calc\(5\/12\*100\%-0\.5rem\)\] {
|
|
855
|
+
width: calc(5 / 12 * 100% - 0.5rem) !important
|
|
824
856
|
}
|
|
825
857
|
|
|
826
|
-
.desktop-lg\:w
|
|
827
|
-
width:
|
|
858
|
+
.desktop-lg\:w-\[calc\(6\/12\*100\%-0\.5rem\)\] {
|
|
859
|
+
width: calc(6 / 12 * 100% - 0.5rem) !important
|
|
828
860
|
}
|
|
829
861
|
|
|
830
|
-
.desktop-lg\:w
|
|
831
|
-
width:
|
|
862
|
+
.desktop-lg\:w-\[calc\(7\/12\*100\%-0\.5rem\)\] {
|
|
863
|
+
width: calc(7 / 12 * 100% - 0.5rem) !important
|
|
832
864
|
}
|
|
833
865
|
|
|
834
|
-
.desktop-lg\:w
|
|
835
|
-
width:
|
|
866
|
+
.desktop-lg\:w-\[calc\(8\/12\*100\%-0\.5rem\)\] {
|
|
867
|
+
width: calc(8 / 12 * 100% - 0.5rem) !important
|
|
836
868
|
}
|
|
837
869
|
|
|
838
|
-
.desktop-lg\:w
|
|
839
|
-
width:
|
|
870
|
+
.desktop-lg\:w-\[calc\(9\/12\*100\%-0\.5rem\)\] {
|
|
871
|
+
width: calc(9 / 12 * 100% - 0.5rem) !important
|
|
840
872
|
}
|
|
841
873
|
|
|
842
874
|
.desktop-lg\:pr-0 {
|
|
@@ -865,48 +897,52 @@
|
|
|
865
897
|
display: none !important
|
|
866
898
|
}
|
|
867
899
|
|
|
868
|
-
.desktop-xl\:w
|
|
869
|
-
width:
|
|
900
|
+
.desktop-xl\:w-\[calc\(1\/12\*100\%-0\.5rem\)\] {
|
|
901
|
+
width: calc(1 / 12 * 100% - 0.5rem) !important
|
|
902
|
+
}
|
|
903
|
+
|
|
904
|
+
.desktop-xl\:w-\[calc\(10\/12\*100\%-0\.5rem\)\] {
|
|
905
|
+
width: calc(10 / 12 * 100% - 0.5rem) !important
|
|
870
906
|
}
|
|
871
907
|
|
|
872
|
-
.desktop-xl\:w
|
|
873
|
-
width:
|
|
908
|
+
.desktop-xl\:w-\[calc\(11\/12\*100\%-0\.5rem\)\] {
|
|
909
|
+
width: calc(11 / 12 * 100% - 0.5rem) !important
|
|
874
910
|
}
|
|
875
911
|
|
|
876
|
-
.desktop-xl\:w
|
|
877
|
-
width:
|
|
912
|
+
.desktop-xl\:w-\[calc\(12\/12\*100\%-0\.5rem\)\] {
|
|
913
|
+
width: calc(12 / 12 * 100% - 0.5rem) !important
|
|
878
914
|
}
|
|
879
915
|
|
|
880
|
-
.desktop-xl\:w
|
|
881
|
-
width:
|
|
916
|
+
.desktop-xl\:w-\[calc\(2\/12\*100\%-0\.5rem\)\] {
|
|
917
|
+
width: calc(2 / 12 * 100% - 0.5rem) !important
|
|
882
918
|
}
|
|
883
919
|
|
|
884
|
-
.desktop-xl\:w
|
|
885
|
-
width:
|
|
920
|
+
.desktop-xl\:w-\[calc\(3\/12\*100\%-0\.5rem\)\] {
|
|
921
|
+
width: calc(3 / 12 * 100% - 0.5rem) !important
|
|
886
922
|
}
|
|
887
923
|
|
|
888
|
-
.desktop-xl\:w
|
|
889
|
-
width:
|
|
924
|
+
.desktop-xl\:w-\[calc\(4\/12\*100\%-0\.5rem\)\] {
|
|
925
|
+
width: calc(4 / 12 * 100% - 0.5rem) !important
|
|
890
926
|
}
|
|
891
927
|
|
|
892
|
-
.desktop-xl\:w
|
|
893
|
-
width:
|
|
928
|
+
.desktop-xl\:w-\[calc\(5\/12\*100\%-0\.5rem\)\] {
|
|
929
|
+
width: calc(5 / 12 * 100% - 0.5rem) !important
|
|
894
930
|
}
|
|
895
931
|
|
|
896
|
-
.desktop-xl\:w
|
|
897
|
-
width:
|
|
932
|
+
.desktop-xl\:w-\[calc\(6\/12\*100\%-0\.5rem\)\] {
|
|
933
|
+
width: calc(6 / 12 * 100% - 0.5rem) !important
|
|
898
934
|
}
|
|
899
935
|
|
|
900
|
-
.desktop-xl\:w
|
|
901
|
-
width:
|
|
936
|
+
.desktop-xl\:w-\[calc\(7\/12\*100\%-0\.5rem\)\] {
|
|
937
|
+
width: calc(7 / 12 * 100% - 0.5rem) !important
|
|
902
938
|
}
|
|
903
939
|
|
|
904
|
-
.desktop-xl\:w
|
|
905
|
-
width:
|
|
940
|
+
.desktop-xl\:w-\[calc\(8\/12\*100\%-0\.5rem\)\] {
|
|
941
|
+
width: calc(8 / 12 * 100% - 0.5rem) !important
|
|
906
942
|
}
|
|
907
943
|
|
|
908
|
-
.desktop-xl\:w
|
|
909
|
-
width:
|
|
944
|
+
.desktop-xl\:w-\[calc\(9\/12\*100\%-0\.5rem\)\] {
|
|
945
|
+
width: calc(9 / 12 * 100% - 0.5rem) !important
|
|
910
946
|
}
|
|
911
947
|
|
|
912
948
|
.desktop-xl\:pr-0 {
|