@haiilo/catalyst 0.1.1 → 0.2.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.
@@ -404,6 +404,27 @@ pre {
404
404
  line-height: 1.25rem;
405
405
  color: rgb(var(--cat-font-color-mono, 0, 0, 0));
406
406
  font-weight: var(--cat-font-weight-mono, 400);
407
+ color: rgb(var(--cat-font-color-mono, 0, 0, 0));
408
+ }
409
+
410
+ nav hr,
411
+ nav .cat-hr {
412
+ margin-top: 0.5rem;
413
+ margin-bottom: 0.5rem;
414
+ }
415
+ nav .cat-head,
416
+ nav .cat-text {
417
+ padding: 0.5rem 1rem;
418
+ }
419
+ nav .cat-head > :last-child,
420
+ nav .cat-text > :last-child {
421
+ margin-bottom: 0;
422
+ }
423
+ nav .cat-head {
424
+ font-family: var(--cat-font-family-head, "DM Sans"), system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
425
+ font-size: 0.9375rem;
426
+ line-height: 1.25rem;
427
+ color: rgb(var(--cat-font-color-head, 0, 0, 0));
407
428
  }
408
429
 
409
430
  h1,
@@ -471,16 +492,79 @@ h6,
471
492
  color: rgb(var(--cat-font-color-head, 0, 0, 0));
472
493
  }
473
494
 
495
+ .cat-text-xl {
496
+ font-size: 1.25rem;
497
+ line-height: 1.5rem;
498
+ }
499
+
500
+ .cat-text-l {
501
+ font-size: 1.125rem;
502
+ line-height: 1.5rem;
503
+ }
504
+
505
+ .cat-text-m {
506
+ font-size: 0.9375rem;
507
+ line-height: 1.25rem;
508
+ }
509
+
510
+ .cat-text-s {
511
+ font-size: 0.875rem;
512
+ line-height: 1rem;
513
+ }
514
+
515
+ .cat-text-xs {
516
+ font-size: 0.75rem;
517
+ line-height: 1rem;
518
+ }
519
+
520
+ .cat-mono-xl {
521
+ font-family: var(--cat-font-family-mono, "Azeret Mono"), SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
522
+ font-size: 1.25rem;
523
+ line-height: 1.5rem;
524
+ color: rgb(var(--cat-font-color-mono, 0, 0, 0));
525
+ }
526
+
527
+ .cat-mono-l {
528
+ font-family: var(--cat-font-family-mono, "Azeret Mono"), SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
529
+ font-size: 1.125rem;
530
+ line-height: 1.5rem;
531
+ color: rgb(var(--cat-font-color-mono, 0, 0, 0));
532
+ }
533
+
534
+ .cat-mono-m {
535
+ font-family: var(--cat-font-family-mono, "Azeret Mono"), SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
536
+ font-size: 0.9375rem;
537
+ line-height: 1.25rem;
538
+ color: rgb(var(--cat-font-color-mono, 0, 0, 0));
539
+ }
540
+
541
+ .cat-mono-s {
542
+ font-family: var(--cat-font-family-mono, "Azeret Mono"), SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
543
+ font-size: 0.875rem;
544
+ line-height: 1rem;
545
+ color: rgb(var(--cat-font-color-mono, 0, 0, 0));
546
+ }
547
+
548
+ .cat-mono-xs {
549
+ font-family: var(--cat-font-family-mono, "Azeret Mono"), SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
550
+ font-size: 0.75rem;
551
+ line-height: 1rem;
552
+ color: rgb(var(--cat-font-color-mono, 0, 0, 0));
553
+ }
554
+
474
555
  p {
475
556
  margin-top: 0;
476
557
  margin-bottom: 1rem;
477
558
  }
478
559
 
479
- hr {
560
+ hr,
561
+ .cat-hr {
562
+ display: block;
480
563
  margin: 1rem 0;
481
- height: 1px;
482
564
  border: 0;
565
+ height: 1px;
483
566
  background-color: #ebecf0;
567
+ overflow: hidden;
484
568
  }
485
569
 
486
570
  a {
@@ -528,6 +612,10 @@ small,
528
612
  text-decoration: line-through;
529
613
  }
530
614
 
615
+ .cat-muted {
616
+ color: rgb(var(--cat-font-color-muted, 105, 118, 135));
617
+ }
618
+
531
619
  ol,
532
620
  ul {
533
621
  padding-left: 2rem;
@@ -667,176 +755,348 @@ figure figcaption::before {
667
755
  font-weight: 400;
668
756
  font-display: fallback;
669
757
  }
670
- .cat-d-none {
758
+ .cat-bg-primary {
759
+ background-color: rgb(var(--cat-primary-bg, 32, 127, 138)) !important;
760
+ color: rgb(var(--cat-primary-fill, 255, 255, 255)) !important;
761
+ }
762
+
763
+ .cat-bg-primary-hover {
764
+ transition: background-color 0.13s, color 0.13s;
765
+ }
766
+ .cat-bg-primary-hover:hover {
767
+ background-color: rgb(var(--cat-primary-bg-hover, 28, 112, 122)) !important;
768
+ color: rgb(var(--cat-primary-fill-hover, 255, 255, 255)) !important;
769
+ }
770
+
771
+ .cat-text-primary,
772
+ .cat-link-primary {
773
+ color: rgb(var(--cat-primary-text, 32, 127, 138)) !important;
774
+ }
775
+
776
+ .cat-link-primary,
777
+ .cat-text-primary-hover {
778
+ transition: color 0.13s;
779
+ }
780
+ .cat-link-primary:hover,
781
+ .cat-text-primary-hover:hover {
782
+ color: rgb(var(--cat-primary-text-hover, 28, 112, 122)) !important;
783
+ }
784
+ .cat-link-primary:active,
785
+ .cat-text-primary-hover:active {
786
+ color: rgb(var(--cat-primary-text-active, 25, 101, 110)) !important;
787
+ }
788
+
789
+ .cat-bg-secondary {
790
+ background-color: #697687 !important;
791
+ color: white !important;
792
+ }
793
+
794
+ .cat-bg-secondary-hover {
795
+ transition: background-color 0.13s, color 0.13s;
796
+ }
797
+ .cat-bg-secondary-hover:hover {
798
+ background-color: #697687 !important;
799
+ color: white !important;
800
+ }
801
+
802
+ .cat-text-secondary,
803
+ .cat-link-secondary {
804
+ color: black !important;
805
+ }
806
+
807
+ .cat-link-secondary,
808
+ .cat-text-secondary-hover {
809
+ transition: color 0.13s;
810
+ }
811
+ .cat-link-secondary:hover,
812
+ .cat-text-secondary-hover:hover {
813
+ color: black !important;
814
+ }
815
+ .cat-link-secondary:active,
816
+ .cat-text-secondary-hover:active {
817
+ color: black !important;
818
+ }
819
+
820
+ .cat-bg-success {
821
+ background-color: #008458 !important;
822
+ color: white !important;
823
+ }
824
+
825
+ .cat-bg-success-hover {
826
+ transition: background-color 0.13s, color 0.13s;
827
+ }
828
+ .cat-bg-success-hover:hover {
829
+ background-color: #00754e !important;
830
+ color: white !important;
831
+ }
832
+
833
+ .cat-text-success,
834
+ .cat-link-success {
835
+ color: #008458 !important;
836
+ }
837
+
838
+ .cat-link-success,
839
+ .cat-text-success-hover {
840
+ transition: color 0.13s;
841
+ }
842
+ .cat-link-success:hover,
843
+ .cat-text-success-hover:hover {
844
+ color: #00754e !important;
845
+ }
846
+ .cat-link-success:active,
847
+ .cat-text-success-hover:active {
848
+ color: #006946 !important;
849
+ }
850
+
851
+ .cat-bg-warning {
852
+ background-color: #ffce80 !important;
853
+ color: black !important;
854
+ }
855
+
856
+ .cat-bg-warning-hover {
857
+ transition: background-color 0.13s, color 0.13s;
858
+ }
859
+ .cat-bg-warning-hover:hover {
860
+ background-color: #ffd694 !important;
861
+ color: black !important;
862
+ }
863
+
864
+ .cat-text-warning,
865
+ .cat-link-warning {
866
+ color: #9f6100 !important;
867
+ }
868
+
869
+ .cat-link-warning,
870
+ .cat-text-warning-hover {
871
+ transition: color 0.13s;
872
+ }
873
+ .cat-link-warning:hover,
874
+ .cat-text-warning-hover:hover {
875
+ color: #9f6100 !important;
876
+ }
877
+ .cat-link-warning:active,
878
+ .cat-text-warning-hover:active {
879
+ color: #9f6100 !important;
880
+ }
881
+
882
+ .cat-bg-danger {
883
+ background-color: #d9340d !important;
884
+ color: white !important;
885
+ }
886
+
887
+ .cat-bg-danger-hover {
888
+ transition: background-color 0.13s, color 0.13s;
889
+ }
890
+ .cat-bg-danger-hover:hover {
891
+ background-color: #c22e0b !important;
892
+ color: white !important;
893
+ }
894
+
895
+ .cat-text-danger,
896
+ .cat-link-danger {
897
+ color: #d9340d !important;
898
+ }
899
+
900
+ .cat-link-danger,
901
+ .cat-text-danger-hover {
902
+ transition: color 0.13s;
903
+ }
904
+ .cat-link-danger:hover,
905
+ .cat-text-danger-hover:hover {
906
+ color: #c22e0b !important;
907
+ }
908
+ .cat-link-danger:active,
909
+ .cat-text-danger-hover:active {
910
+ color: #ae2a0a !important;
911
+ }
912
+
913
+ .cat-active {
914
+ color: rgb(var(--cat-primary-text, 32, 127, 138)) !important;
915
+ }
916
+
917
+ .cat-muted {
918
+ color: rgb(var(--cat-font-color-muted, 105, 118, 135)) !important;
919
+ }
920
+
921
+ .cat-text-reset {
922
+ color: inherit !important;
923
+ }
924
+
925
+ .cat-link-reset {
926
+ color: inherit !important;
927
+ text-decoration: inherit !important;
928
+ }
929
+
930
+ .cat-none {
671
931
  display: none !important;
672
932
  }
673
933
 
674
- .cat-d-inline {
934
+ .cat-inline {
675
935
  display: inline !important;
676
936
  }
677
937
 
678
- .cat-d-inline-block {
938
+ .cat-inline-block {
679
939
  display: inline-block !important;
680
940
  }
681
941
 
682
- .cat-d-block {
942
+ .cat-block {
683
943
  display: block !important;
684
944
  }
685
945
 
686
- .cat-d-grid {
946
+ .cat-grid {
687
947
  display: grid !important;
688
948
  }
689
949
 
690
- .cat-d-flex {
950
+ .cat-flex {
691
951
  display: flex !important;
692
952
  }
693
953
 
694
- .cat-d-inline-flex {
954
+ .cat-inline-flex {
695
955
  display: inline-flex !important;
696
956
  }
697
957
 
698
958
  @media screen and (min-width: 540px) {
699
- .cat-d-none\:xs {
959
+ .cat-none\:xs {
700
960
  display: none !important;
701
961
  }
702
962
 
703
- .cat-d-inline\:xs {
963
+ .cat-inline\:xs {
704
964
  display: inline !important;
705
965
  }
706
966
 
707
- .cat-d-inline-block\:xs {
967
+ .cat-inline-block\:xs {
708
968
  display: inline-block !important;
709
969
  }
710
970
 
711
- .cat-d-block\:xs {
971
+ .cat-block\:xs {
712
972
  display: block !important;
713
973
  }
714
974
 
715
- .cat-d-grid\:xs {
975
+ .cat-grid\:xs {
716
976
  display: grid !important;
717
977
  }
718
978
 
719
- .cat-d-flex\:xs {
979
+ .cat-flex\:xs {
720
980
  display: flex !important;
721
981
  }
722
982
 
723
- .cat-d-inline-flex\:xs {
983
+ .cat-inline-flex\:xs {
724
984
  display: inline-flex !important;
725
985
  }
726
986
  }
727
987
  @media screen and (min-width: 768px) {
728
- .cat-d-none\:s {
988
+ .cat-none\:s {
729
989
  display: none !important;
730
990
  }
731
991
 
732
- .cat-d-inline\:s {
992
+ .cat-inline\:s {
733
993
  display: inline !important;
734
994
  }
735
995
 
736
- .cat-d-inline-block\:s {
996
+ .cat-inline-block\:s {
737
997
  display: inline-block !important;
738
998
  }
739
999
 
740
- .cat-d-block\:s {
1000
+ .cat-block\:s {
741
1001
  display: block !important;
742
1002
  }
743
1003
 
744
- .cat-d-grid\:s {
1004
+ .cat-grid\:s {
745
1005
  display: grid !important;
746
1006
  }
747
1007
 
748
- .cat-d-flex\:s {
1008
+ .cat-flex\:s {
749
1009
  display: flex !important;
750
1010
  }
751
1011
 
752
- .cat-d-inline-flex\:s {
1012
+ .cat-inline-flex\:s {
753
1013
  display: inline-flex !important;
754
1014
  }
755
1015
  }
756
1016
  @media screen and (min-width: 992px) {
757
- .cat-d-none\:m {
1017
+ .cat-none\:m {
758
1018
  display: none !important;
759
1019
  }
760
1020
 
761
- .cat-d-inline\:m {
1021
+ .cat-inline\:m {
762
1022
  display: inline !important;
763
1023
  }
764
1024
 
765
- .cat-d-inline-block\:m {
1025
+ .cat-inline-block\:m {
766
1026
  display: inline-block !important;
767
1027
  }
768
1028
 
769
- .cat-d-block\:m {
1029
+ .cat-block\:m {
770
1030
  display: block !important;
771
1031
  }
772
1032
 
773
- .cat-d-grid\:m {
1033
+ .cat-grid\:m {
774
1034
  display: grid !important;
775
1035
  }
776
1036
 
777
- .cat-d-flex\:m {
1037
+ .cat-flex\:m {
778
1038
  display: flex !important;
779
1039
  }
780
1040
 
781
- .cat-d-inline-flex\:m {
1041
+ .cat-inline-flex\:m {
782
1042
  display: inline-flex !important;
783
1043
  }
784
1044
  }
785
1045
  @media screen and (min-width: 1200px) {
786
- .cat-d-none\:l {
1046
+ .cat-none\:l {
787
1047
  display: none !important;
788
1048
  }
789
1049
 
790
- .cat-d-inline\:l {
1050
+ .cat-inline\:l {
791
1051
  display: inline !important;
792
1052
  }
793
1053
 
794
- .cat-d-inline-block\:l {
1054
+ .cat-inline-block\:l {
795
1055
  display: inline-block !important;
796
1056
  }
797
1057
 
798
- .cat-d-block\:l {
1058
+ .cat-block\:l {
799
1059
  display: block !important;
800
1060
  }
801
1061
 
802
- .cat-d-grid\:l {
1062
+ .cat-grid\:l {
803
1063
  display: grid !important;
804
1064
  }
805
1065
 
806
- .cat-d-flex\:l {
1066
+ .cat-flex\:l {
807
1067
  display: flex !important;
808
1068
  }
809
1069
 
810
- .cat-d-inline-flex\:l {
1070
+ .cat-inline-flex\:l {
811
1071
  display: inline-flex !important;
812
1072
  }
813
1073
  }
814
1074
  @media screen and (min-width: 1400px) {
815
- .cat-d-none\:xl {
1075
+ .cat-none\:xl {
816
1076
  display: none !important;
817
1077
  }
818
1078
 
819
- .cat-d-inline\:xl {
1079
+ .cat-inline\:xl {
820
1080
  display: inline !important;
821
1081
  }
822
1082
 
823
- .cat-d-inline-block\:xl {
1083
+ .cat-inline-block\:xl {
824
1084
  display: inline-block !important;
825
1085
  }
826
1086
 
827
- .cat-d-block\:xl {
1087
+ .cat-block\:xl {
828
1088
  display: block !important;
829
1089
  }
830
1090
 
831
- .cat-d-grid\:xl {
1091
+ .cat-grid\:xl {
832
1092
  display: grid !important;
833
1093
  }
834
1094
 
835
- .cat-d-flex\:xl {
1095
+ .cat-flex\:xl {
836
1096
  display: flex !important;
837
1097
  }
838
1098
 
839
- .cat-d-inline-flex\:xl {
1099
+ .cat-inline-flex\:xl {
840
1100
  display: inline-flex !important;
841
1101
  }
842
1102
  }
@@ -884,6 +1144,287 @@ figure figcaption::before {
884
1144
  box-shadow: 0 2px 4px -1px rgba(16, 29, 48, 0.05), 0 9px 16px -3px rgba(16, 29, 48, 0.14), 0 32px 20px -20px rgba(16, 29, 48, 0.2);
885
1145
  }
886
1146
 
1147
+ .cat-flex-row {
1148
+ flex-direction: row;
1149
+ }
1150
+
1151
+ .cat-flex-col {
1152
+ flex-direction: column;
1153
+ }
1154
+
1155
+ .cat-flex-1 {
1156
+ flex: 1 1 0%;
1157
+ }
1158
+
1159
+ .cat-flex-auto {
1160
+ flex: 1 1 auto;
1161
+ }
1162
+
1163
+ .cat-flex-init {
1164
+ flex: 0 1 auto;
1165
+ }
1166
+
1167
+ .cat-flex-none {
1168
+ flex: none;
1169
+ }
1170
+
1171
+ .cat-flex-wrap {
1172
+ flex-wrap: wrap;
1173
+ }
1174
+
1175
+ .cat-flex-nowrap {
1176
+ flex-wrap: nowrap;
1177
+ }
1178
+
1179
+ .cat-gap-xl {
1180
+ gap: 2rem;
1181
+ }
1182
+
1183
+ .cat-gap-x-xl {
1184
+ column-gap: 2rem;
1185
+ }
1186
+
1187
+ .cat-gap-y-xl {
1188
+ row-gap: 2rem;
1189
+ }
1190
+
1191
+ .cat-gap-l {
1192
+ gap: 1.5rem;
1193
+ }
1194
+
1195
+ .cat-gap-x-l {
1196
+ column-gap: 1.5rem;
1197
+ }
1198
+
1199
+ .cat-gap-y-l {
1200
+ row-gap: 1.5rem;
1201
+ }
1202
+
1203
+ .cat-gap-m {
1204
+ gap: 1rem;
1205
+ }
1206
+
1207
+ .cat-gap-x-m {
1208
+ column-gap: 1rem;
1209
+ }
1210
+
1211
+ .cat-gap-y-m {
1212
+ row-gap: 1rem;
1213
+ }
1214
+
1215
+ .cat-gap-s {
1216
+ gap: 0.5rem;
1217
+ }
1218
+
1219
+ .cat-gap-x-s {
1220
+ column-gap: 0.5rem;
1221
+ }
1222
+
1223
+ .cat-gap-y-s {
1224
+ row-gap: 0.5rem;
1225
+ }
1226
+
1227
+ .cat-gap-xs {
1228
+ gap: 0.25rem;
1229
+ }
1230
+
1231
+ .cat-gap-x-xs {
1232
+ column-gap: 0.25rem;
1233
+ }
1234
+
1235
+ .cat-gap-y-xs {
1236
+ row-gap: 0.25rem;
1237
+ }
1238
+
1239
+ .cat-justify-start {
1240
+ justify-content: flex-start;
1241
+ }
1242
+
1243
+ .cat-justify-end {
1244
+ justify-content: flex-end;
1245
+ }
1246
+
1247
+ .cat-justify-center {
1248
+ justify-content: center;
1249
+ }
1250
+
1251
+ .cat-justify-between {
1252
+ justify-content: space-between;
1253
+ }
1254
+
1255
+ .cat-justify-items-start {
1256
+ justify-items: flex-start;
1257
+ }
1258
+
1259
+ .cat-justify-items-end {
1260
+ justify-items: flex-end;
1261
+ }
1262
+
1263
+ .cat-justify-items-center {
1264
+ justify-items: flex-center;
1265
+ }
1266
+
1267
+ .cat-justify-items-stretch {
1268
+ justify-items: flex-stretch;
1269
+ }
1270
+
1271
+ .cat-content-start {
1272
+ align-content: flex-start;
1273
+ }
1274
+
1275
+ .cat-content-end {
1276
+ align-content: flex-end;
1277
+ }
1278
+
1279
+ .cat-content-center {
1280
+ align-content: center;
1281
+ }
1282
+
1283
+ .cat-content-between {
1284
+ align-content: space-between;
1285
+ }
1286
+
1287
+ .cat-items-start {
1288
+ align-items: flex-start;
1289
+ }
1290
+
1291
+ .cat-items-end {
1292
+ align-items: flex-end;
1293
+ }
1294
+
1295
+ .cat-items-center {
1296
+ align-items: flex-center;
1297
+ }
1298
+
1299
+ .cat-items-stretch {
1300
+ align-items: flex-stretch;
1301
+ }
1302
+
1303
+ .cat-grid-1 {
1304
+ grid-template-columns: repeat(1, minmax(0, 1fr));
1305
+ }
1306
+
1307
+ .cat-grid-col-1 {
1308
+ grid-column: span 1 / span 1;
1309
+ }
1310
+
1311
+ .cat-grid-2 {
1312
+ grid-template-columns: repeat(2, minmax(0, 1fr));
1313
+ }
1314
+
1315
+ .cat-grid-col-2 {
1316
+ grid-column: span 2 / span 2;
1317
+ }
1318
+
1319
+ .cat-grid-3 {
1320
+ grid-template-columns: repeat(3, minmax(0, 1fr));
1321
+ }
1322
+
1323
+ .cat-grid-col-3 {
1324
+ grid-column: span 3 / span 3;
1325
+ }
1326
+
1327
+ .cat-grid-4 {
1328
+ grid-template-columns: repeat(4, minmax(0, 1fr));
1329
+ }
1330
+
1331
+ .cat-grid-col-4 {
1332
+ grid-column: span 4 / span 4;
1333
+ }
1334
+
1335
+ .cat-grid-5 {
1336
+ grid-template-columns: repeat(5, minmax(0, 1fr));
1337
+ }
1338
+
1339
+ .cat-grid-col-5 {
1340
+ grid-column: span 5 / span 5;
1341
+ }
1342
+
1343
+ .cat-grid-6 {
1344
+ grid-template-columns: repeat(6, minmax(0, 1fr));
1345
+ }
1346
+
1347
+ .cat-grid-col-6 {
1348
+ grid-column: span 6 / span 6;
1349
+ }
1350
+
1351
+ .cat-grid-7 {
1352
+ grid-template-columns: repeat(7, minmax(0, 1fr));
1353
+ }
1354
+
1355
+ .cat-grid-col-7 {
1356
+ grid-column: span 7 / span 7;
1357
+ }
1358
+
1359
+ .cat-grid-8 {
1360
+ grid-template-columns: repeat(8, minmax(0, 1fr));
1361
+ }
1362
+
1363
+ .cat-grid-col-8 {
1364
+ grid-column: span 8 / span 8;
1365
+ }
1366
+
1367
+ .cat-grid-9 {
1368
+ grid-template-columns: repeat(9, minmax(0, 1fr));
1369
+ }
1370
+
1371
+ .cat-grid-col-9 {
1372
+ grid-column: span 9 / span 9;
1373
+ }
1374
+
1375
+ .cat-grid-10 {
1376
+ grid-template-columns: repeat(10, minmax(0, 1fr));
1377
+ }
1378
+
1379
+ .cat-grid-col-10 {
1380
+ grid-column: span 10 / span 10;
1381
+ }
1382
+
1383
+ .cat-grid-11 {
1384
+ grid-template-columns: repeat(11, minmax(0, 1fr));
1385
+ }
1386
+
1387
+ .cat-grid-col-11 {
1388
+ grid-column: span 11 / span 11;
1389
+ }
1390
+
1391
+ .cat-grid-12 {
1392
+ grid-template-columns: repeat(12, minmax(0, 1fr));
1393
+ }
1394
+
1395
+ .cat-grid-col-12 {
1396
+ grid-column: span 12 / span 12;
1397
+ }
1398
+
1399
+ .cat-grid-row-1 {
1400
+ grid-row: span 1 / span 1;
1401
+ }
1402
+
1403
+ .cat-grid-row-2 {
1404
+ grid-row: span 2 / span 2;
1405
+ }
1406
+
1407
+ .cat-grid-row-3 {
1408
+ grid-row: span 3 / span 3;
1409
+ }
1410
+
1411
+ .cat-grid-row-4 {
1412
+ grid-row: span 4 / span 4;
1413
+ }
1414
+
1415
+ .cat-grid-row-5 {
1416
+ grid-row: span 5 / span 5;
1417
+ }
1418
+
1419
+ .cat-grid-row-6 {
1420
+ grid-row: span 6 / span 6;
1421
+ }
1422
+
1423
+ .cat-grid-auto {
1424
+ grid-template-columns: repeat(auto-fill,minmax(min(var(--grid-min),100%),1fr));
1425
+ --grid-min: 100%;
1426
+ }
1427
+
887
1428
  .cat-radius-l {
888
1429
  border-radius: 0.5rem;
889
1430
  }