matcha-core 19.25.0 → 19.26.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/matcha-core.css CHANGED
@@ -69125,6 +69125,16 @@
69125
69125
  justify-content: center !important;
69126
69126
  }
69127
69127
 
69128
+ .flex-center {
69129
+ display: flex;
69130
+ justify-content: center;
69131
+ }
69132
+
69133
+ .flex-center--force {
69134
+ display: flex !important;
69135
+ justify-content: center !important;
69136
+ }
69137
+
69128
69138
  .flex-justify-end {
69129
69139
  display: flex;
69130
69140
  justify-content: flex-end;
@@ -69135,6 +69145,16 @@
69135
69145
  justify-content: flex-end !important;
69136
69146
  }
69137
69147
 
69148
+ .flex-end {
69149
+ display: flex;
69150
+ justify-content: flex-end;
69151
+ }
69152
+
69153
+ .flex-end--force {
69154
+ display: flex !important;
69155
+ justify-content: flex-end !important;
69156
+ }
69157
+
69138
69158
  .flex-justify-start {
69139
69159
  display: flex;
69140
69160
  justify-content: flex-start;
@@ -69145,6 +69165,16 @@
69145
69165
  justify-content: flex-start !important;
69146
69166
  }
69147
69167
 
69168
+ .flex-start {
69169
+ display: flex;
69170
+ justify-content: flex-start;
69171
+ }
69172
+
69173
+ .flex-start--force {
69174
+ display: flex !important;
69175
+ justify-content: flex-start !important;
69176
+ }
69177
+
69148
69178
  .flex-justify-inherit {
69149
69179
  display: flex;
69150
69180
  justify-content: inherit;
@@ -69155,6 +69185,16 @@
69155
69185
  justify-content: inherit !important;
69156
69186
  }
69157
69187
 
69188
+ .flex-inherit {
69189
+ display: flex;
69190
+ justify-content: inherit;
69191
+ }
69192
+
69193
+ .flex-inherit--force {
69194
+ display: flex !important;
69195
+ justify-content: inherit !important;
69196
+ }
69197
+
69158
69198
  .flex-justify-initial {
69159
69199
  display: flex;
69160
69200
  justify-content: initial;
@@ -69165,92 +69205,132 @@
69165
69205
  justify-content: initial !important;
69166
69206
  }
69167
69207
 
69168
- .flex-justify-left {
69208
+ .flex-initial {
69209
+ display: flex;
69210
+ justify-content: initial;
69211
+ }
69212
+
69213
+ .flex-initial--force {
69214
+ display: flex !important;
69215
+ justify-content: initial !important;
69216
+ }
69217
+
69218
+ .flex-left {
69169
69219
  display: flex;
69170
69220
  justify-content: left;
69171
69221
  }
69172
69222
 
69173
- .flex-justify-left--force {
69223
+ .flex-left--force {
69174
69224
  display: flex !important;
69175
69225
  justify-content: left !important;
69176
69226
  }
69177
69227
 
69178
- .flex-justify-normal {
69228
+ .flex-right {
69229
+ display: flex;
69230
+ justify-content: right;
69231
+ }
69232
+
69233
+ .flex-right--force {
69234
+ display: flex !important;
69235
+ justify-content: right !important;
69236
+ }
69237
+
69238
+ .flex-normal {
69179
69239
  display: flex;
69180
69240
  justify-content: normal;
69181
69241
  }
69182
69242
 
69183
- .flex-justify-normal--force {
69243
+ .flex-normal--force {
69184
69244
  display: flex !important;
69185
69245
  justify-content: normal !important;
69186
69246
  }
69187
69247
 
69188
- .flex-justify-revert {
69248
+ .flex-revert {
69189
69249
  display: flex;
69190
69250
  justify-content: revert;
69191
69251
  }
69192
69252
 
69193
- .flex-justify-revert--force {
69253
+ .flex-revert--force {
69194
69254
  display: flex !important;
69195
69255
  justify-content: revert !important;
69196
69256
  }
69197
69257
 
69198
- .flex-justify-right {
69258
+ .flex-space-around {
69199
69259
  display: flex;
69200
- justify-content: right;
69260
+ justify-content: space-around;
69201
69261
  }
69202
69262
 
69203
- .flex-justify-right--force {
69263
+ .flex-space-around--force {
69204
69264
  display: flex !important;
69205
- justify-content: right !important;
69265
+ justify-content: space-around !important;
69206
69266
  }
69207
69267
 
69208
- .flex-justify-space-around {
69268
+ .flex-around {
69209
69269
  display: flex;
69210
69270
  justify-content: space-around;
69211
69271
  }
69212
69272
 
69213
- .flex-justify-space-around--force {
69273
+ .flex-around--force {
69214
69274
  display: flex !important;
69215
69275
  justify-content: space-around !important;
69216
69276
  }
69217
69277
 
69218
- .flex-justify-space-between {
69278
+ .flex-space-between {
69219
69279
  display: flex;
69220
69280
  justify-content: space-between;
69221
69281
  }
69222
69282
 
69223
- .flex-justify-space-between--force {
69283
+ .flex-space-between--force {
69224
69284
  display: flex !important;
69225
69285
  justify-content: space-between !important;
69226
69286
  }
69227
69287
 
69228
- .flex-justify-space-evenly {
69288
+ .flex-between {
69289
+ display: flex;
69290
+ justify-content: space-between;
69291
+ }
69292
+
69293
+ .flex-between--force {
69294
+ display: flex !important;
69295
+ justify-content: space-between !important;
69296
+ }
69297
+
69298
+ .flex-space-evenly {
69299
+ display: flex;
69300
+ justify-content: space-evenly;
69301
+ }
69302
+
69303
+ .flex-space-evenly--force {
69304
+ display: flex !important;
69305
+ justify-content: space-evenly !important;
69306
+ }
69307
+
69308
+ .flex-evenly {
69229
69309
  display: flex;
69230
69310
  justify-content: space-evenly;
69231
69311
  }
69232
69312
 
69233
- .flex-justify-space-evenly--force {
69313
+ .flex-evenly--force {
69234
69314
  display: flex !important;
69235
69315
  justify-content: space-evenly !important;
69236
69316
  }
69237
69317
 
69238
- .flex-justify-stretch {
69318
+ .flex-stretch {
69239
69319
  display: flex;
69240
69320
  justify-content: stretch;
69241
69321
  }
69242
69322
 
69243
- .flex-justify-stretch--force {
69323
+ .flex-stretch--force {
69244
69324
  display: flex !important;
69245
69325
  justify-content: stretch !important;
69246
69326
  }
69247
69327
 
69248
- .flex-justify-unset {
69328
+ .flex-unset {
69249
69329
  display: flex;
69250
69330
  justify-content: unset;
69251
69331
  }
69252
69332
 
69253
- .flex-justify-unset--force {
69333
+ .flex-unset--force {
69254
69334
  display: flex !important;
69255
69335
  justify-content: unset !important;
69256
69336
  }
@@ -69466,6 +69546,16 @@
69466
69546
  justify-content: center !important;
69467
69547
  }
69468
69548
 
69549
+ .flex-xs-center {
69550
+ display: flex;
69551
+ justify-content: center;
69552
+ }
69553
+
69554
+ .flex-xs-center--force {
69555
+ display: flex !important;
69556
+ justify-content: center !important;
69557
+ }
69558
+
69469
69559
  .flex-xs-justify-end {
69470
69560
  display: flex;
69471
69561
  justify-content: flex-end;
@@ -69476,6 +69566,16 @@
69476
69566
  justify-content: flex-end !important;
69477
69567
  }
69478
69568
 
69569
+ .flex-xs-end {
69570
+ display: flex;
69571
+ justify-content: flex-end;
69572
+ }
69573
+
69574
+ .flex-xs-end--force {
69575
+ display: flex !important;
69576
+ justify-content: flex-end !important;
69577
+ }
69578
+
69479
69579
  .flex-xs-justify-start {
69480
69580
  display: flex;
69481
69581
  justify-content: flex-start;
@@ -69486,6 +69586,16 @@
69486
69586
  justify-content: flex-start !important;
69487
69587
  }
69488
69588
 
69589
+ .flex-xs-start {
69590
+ display: flex;
69591
+ justify-content: flex-start;
69592
+ }
69593
+
69594
+ .flex-xs-start--force {
69595
+ display: flex !important;
69596
+ justify-content: flex-start !important;
69597
+ }
69598
+
69489
69599
  .flex-xs-justify-inherit {
69490
69600
  display: flex;
69491
69601
  justify-content: inherit;
@@ -69496,6 +69606,16 @@
69496
69606
  justify-content: inherit !important;
69497
69607
  }
69498
69608
 
69609
+ .flex-xs-inherit {
69610
+ display: flex;
69611
+ justify-content: inherit;
69612
+ }
69613
+
69614
+ .flex-xs-inherit--force {
69615
+ display: flex !important;
69616
+ justify-content: inherit !important;
69617
+ }
69618
+
69499
69619
  .flex-xs-justify-initial {
69500
69620
  display: flex;
69501
69621
  justify-content: initial;
@@ -69506,92 +69626,132 @@
69506
69626
  justify-content: initial !important;
69507
69627
  }
69508
69628
 
69509
- .flex-xs-justify-left {
69629
+ .flex-xs-initial {
69630
+ display: flex;
69631
+ justify-content: initial;
69632
+ }
69633
+
69634
+ .flex-xs-initial--force {
69635
+ display: flex !important;
69636
+ justify-content: initial !important;
69637
+ }
69638
+
69639
+ .flex-xs-left {
69510
69640
  display: flex;
69511
69641
  justify-content: left;
69512
69642
  }
69513
69643
 
69514
- .flex-xs-justify-left--force {
69644
+ .flex-xs-left--force {
69515
69645
  display: flex !important;
69516
69646
  justify-content: left !important;
69517
69647
  }
69518
69648
 
69519
- .flex-xs-justify-normal {
69649
+ .flex-xs-right {
69650
+ display: flex;
69651
+ justify-content: right;
69652
+ }
69653
+
69654
+ .flex-xs-right--force {
69655
+ display: flex !important;
69656
+ justify-content: right !important;
69657
+ }
69658
+
69659
+ .flex-xs-normal {
69520
69660
  display: flex;
69521
69661
  justify-content: normal;
69522
69662
  }
69523
69663
 
69524
- .flex-xs-justify-normal--force {
69664
+ .flex-xs-normal--force {
69525
69665
  display: flex !important;
69526
69666
  justify-content: normal !important;
69527
69667
  }
69528
69668
 
69529
- .flex-xs-justify-revert {
69669
+ .flex-xs-revert {
69530
69670
  display: flex;
69531
69671
  justify-content: revert;
69532
69672
  }
69533
69673
 
69534
- .flex-xs-justify-revert--force {
69674
+ .flex-xs-revert--force {
69535
69675
  display: flex !important;
69536
69676
  justify-content: revert !important;
69537
69677
  }
69538
69678
 
69539
- .flex-xs-justify-right {
69679
+ .flex-xs-space-around {
69540
69680
  display: flex;
69541
- justify-content: right;
69681
+ justify-content: space-around;
69542
69682
  }
69543
69683
 
69544
- .flex-xs-justify-right--force {
69684
+ .flex-xs-space-around--force {
69545
69685
  display: flex !important;
69546
- justify-content: right !important;
69686
+ justify-content: space-around !important;
69547
69687
  }
69548
69688
 
69549
- .flex-xs-justify-space-around {
69689
+ .flex-xs-around {
69550
69690
  display: flex;
69551
69691
  justify-content: space-around;
69552
69692
  }
69553
69693
 
69554
- .flex-xs-justify-space-around--force {
69694
+ .flex-xs-around--force {
69555
69695
  display: flex !important;
69556
69696
  justify-content: space-around !important;
69557
69697
  }
69558
69698
 
69559
- .flex-xs-justify-space-between {
69699
+ .flex-xs-space-between {
69700
+ display: flex;
69701
+ justify-content: space-between;
69702
+ }
69703
+
69704
+ .flex-xs-space-between--force {
69705
+ display: flex !important;
69706
+ justify-content: space-between !important;
69707
+ }
69708
+
69709
+ .flex-xs-between {
69560
69710
  display: flex;
69561
69711
  justify-content: space-between;
69562
69712
  }
69563
69713
 
69564
- .flex-xs-justify-space-between--force {
69714
+ .flex-xs-between--force {
69565
69715
  display: flex !important;
69566
69716
  justify-content: space-between !important;
69567
69717
  }
69568
69718
 
69569
- .flex-xs-justify-space-evenly {
69719
+ .flex-xs-space-evenly {
69570
69720
  display: flex;
69571
69721
  justify-content: space-evenly;
69572
69722
  }
69573
69723
 
69574
- .flex-xs-justify-space-evenly--force {
69724
+ .flex-xs-space-evenly--force {
69575
69725
  display: flex !important;
69576
69726
  justify-content: space-evenly !important;
69577
69727
  }
69578
69728
 
69579
- .flex-xs-justify-stretch {
69729
+ .flex-xs-evenly {
69730
+ display: flex;
69731
+ justify-content: space-evenly;
69732
+ }
69733
+
69734
+ .flex-xs-evenly--force {
69735
+ display: flex !important;
69736
+ justify-content: space-evenly !important;
69737
+ }
69738
+
69739
+ .flex-xs-stretch {
69580
69740
  display: flex;
69581
69741
  justify-content: stretch;
69582
69742
  }
69583
69743
 
69584
- .flex-xs-justify-stretch--force {
69744
+ .flex-xs-stretch--force {
69585
69745
  display: flex !important;
69586
69746
  justify-content: stretch !important;
69587
69747
  }
69588
69748
 
69589
- .flex-xs-justify-unset {
69749
+ .flex-xs-unset {
69590
69750
  display: flex;
69591
69751
  justify-content: unset;
69592
69752
  }
69593
69753
 
69594
- .flex-xs-justify-unset--force {
69754
+ .flex-xs-unset--force {
69595
69755
  display: flex !important;
69596
69756
  justify-content: unset !important;
69597
69757
  }
@@ -69808,6 +69968,16 @@
69808
69968
  justify-content: center !important;
69809
69969
  }
69810
69970
 
69971
+ .flex-sm-center {
69972
+ display: flex;
69973
+ justify-content: center;
69974
+ }
69975
+
69976
+ .flex-sm-center--force {
69977
+ display: flex !important;
69978
+ justify-content: center !important;
69979
+ }
69980
+
69811
69981
  .flex-sm-justify-end {
69812
69982
  display: flex;
69813
69983
  justify-content: flex-end;
@@ -69818,6 +69988,16 @@
69818
69988
  justify-content: flex-end !important;
69819
69989
  }
69820
69990
 
69991
+ .flex-sm-end {
69992
+ display: flex;
69993
+ justify-content: flex-end;
69994
+ }
69995
+
69996
+ .flex-sm-end--force {
69997
+ display: flex !important;
69998
+ justify-content: flex-end !important;
69999
+ }
70000
+
69821
70001
  .flex-sm-justify-start {
69822
70002
  display: flex;
69823
70003
  justify-content: flex-start;
@@ -69828,6 +70008,16 @@
69828
70008
  justify-content: flex-start !important;
69829
70009
  }
69830
70010
 
70011
+ .flex-sm-start {
70012
+ display: flex;
70013
+ justify-content: flex-start;
70014
+ }
70015
+
70016
+ .flex-sm-start--force {
70017
+ display: flex !important;
70018
+ justify-content: flex-start !important;
70019
+ }
70020
+
69831
70021
  .flex-sm-justify-inherit {
69832
70022
  display: flex;
69833
70023
  justify-content: inherit;
@@ -69838,6 +70028,16 @@
69838
70028
  justify-content: inherit !important;
69839
70029
  }
69840
70030
 
70031
+ .flex-sm-inherit {
70032
+ display: flex;
70033
+ justify-content: inherit;
70034
+ }
70035
+
70036
+ .flex-sm-inherit--force {
70037
+ display: flex !important;
70038
+ justify-content: inherit !important;
70039
+ }
70040
+
69841
70041
  .flex-sm-justify-initial {
69842
70042
  display: flex;
69843
70043
  justify-content: initial;
@@ -69848,92 +70048,132 @@
69848
70048
  justify-content: initial !important;
69849
70049
  }
69850
70050
 
69851
- .flex-sm-justify-left {
70051
+ .flex-sm-initial {
70052
+ display: flex;
70053
+ justify-content: initial;
70054
+ }
70055
+
70056
+ .flex-sm-initial--force {
70057
+ display: flex !important;
70058
+ justify-content: initial !important;
70059
+ }
70060
+
70061
+ .flex-sm-left {
69852
70062
  display: flex;
69853
70063
  justify-content: left;
69854
70064
  }
69855
70065
 
69856
- .flex-sm-justify-left--force {
70066
+ .flex-sm-left--force {
69857
70067
  display: flex !important;
69858
70068
  justify-content: left !important;
69859
70069
  }
69860
70070
 
69861
- .flex-sm-justify-normal {
70071
+ .flex-sm-right {
70072
+ display: flex;
70073
+ justify-content: right;
70074
+ }
70075
+
70076
+ .flex-sm-right--force {
70077
+ display: flex !important;
70078
+ justify-content: right !important;
70079
+ }
70080
+
70081
+ .flex-sm-normal {
69862
70082
  display: flex;
69863
70083
  justify-content: normal;
69864
70084
  }
69865
70085
 
69866
- .flex-sm-justify-normal--force {
70086
+ .flex-sm-normal--force {
69867
70087
  display: flex !important;
69868
70088
  justify-content: normal !important;
69869
70089
  }
69870
70090
 
69871
- .flex-sm-justify-revert {
70091
+ .flex-sm-revert {
69872
70092
  display: flex;
69873
70093
  justify-content: revert;
69874
70094
  }
69875
70095
 
69876
- .flex-sm-justify-revert--force {
70096
+ .flex-sm-revert--force {
69877
70097
  display: flex !important;
69878
70098
  justify-content: revert !important;
69879
70099
  }
69880
70100
 
69881
- .flex-sm-justify-right {
70101
+ .flex-sm-space-around {
69882
70102
  display: flex;
69883
- justify-content: right;
70103
+ justify-content: space-around;
69884
70104
  }
69885
70105
 
69886
- .flex-sm-justify-right--force {
70106
+ .flex-sm-space-around--force {
69887
70107
  display: flex !important;
69888
- justify-content: right !important;
70108
+ justify-content: space-around !important;
69889
70109
  }
69890
70110
 
69891
- .flex-sm-justify-space-around {
70111
+ .flex-sm-around {
69892
70112
  display: flex;
69893
70113
  justify-content: space-around;
69894
70114
  }
69895
70115
 
69896
- .flex-sm-justify-space-around--force {
70116
+ .flex-sm-around--force {
69897
70117
  display: flex !important;
69898
70118
  justify-content: space-around !important;
69899
70119
  }
69900
70120
 
69901
- .flex-sm-justify-space-between {
70121
+ .flex-sm-space-between {
69902
70122
  display: flex;
69903
70123
  justify-content: space-between;
69904
70124
  }
69905
70125
 
69906
- .flex-sm-justify-space-between--force {
70126
+ .flex-sm-space-between--force {
69907
70127
  display: flex !important;
69908
70128
  justify-content: space-between !important;
69909
70129
  }
69910
70130
 
69911
- .flex-sm-justify-space-evenly {
70131
+ .flex-sm-between {
70132
+ display: flex;
70133
+ justify-content: space-between;
70134
+ }
70135
+
70136
+ .flex-sm-between--force {
70137
+ display: flex !important;
70138
+ justify-content: space-between !important;
70139
+ }
70140
+
70141
+ .flex-sm-space-evenly {
70142
+ display: flex;
70143
+ justify-content: space-evenly;
70144
+ }
70145
+
70146
+ .flex-sm-space-evenly--force {
70147
+ display: flex !important;
70148
+ justify-content: space-evenly !important;
70149
+ }
70150
+
70151
+ .flex-sm-evenly {
69912
70152
  display: flex;
69913
70153
  justify-content: space-evenly;
69914
70154
  }
69915
70155
 
69916
- .flex-sm-justify-space-evenly--force {
70156
+ .flex-sm-evenly--force {
69917
70157
  display: flex !important;
69918
70158
  justify-content: space-evenly !important;
69919
70159
  }
69920
70160
 
69921
- .flex-sm-justify-stretch {
70161
+ .flex-sm-stretch {
69922
70162
  display: flex;
69923
70163
  justify-content: stretch;
69924
70164
  }
69925
70165
 
69926
- .flex-sm-justify-stretch--force {
70166
+ .flex-sm-stretch--force {
69927
70167
  display: flex !important;
69928
70168
  justify-content: stretch !important;
69929
70169
  }
69930
70170
 
69931
- .flex-sm-justify-unset {
70171
+ .flex-sm-unset {
69932
70172
  display: flex;
69933
70173
  justify-content: unset;
69934
70174
  }
69935
70175
 
69936
- .flex-sm-justify-unset--force {
70176
+ .flex-sm-unset--force {
69937
70177
  display: flex !important;
69938
70178
  justify-content: unset !important;
69939
70179
  }
@@ -70150,6 +70390,16 @@
70150
70390
  justify-content: center !important;
70151
70391
  }
70152
70392
 
70393
+ .flex-md-center {
70394
+ display: flex;
70395
+ justify-content: center;
70396
+ }
70397
+
70398
+ .flex-md-center--force {
70399
+ display: flex !important;
70400
+ justify-content: center !important;
70401
+ }
70402
+
70153
70403
  .flex-md-justify-end {
70154
70404
  display: flex;
70155
70405
  justify-content: flex-end;
@@ -70160,6 +70410,16 @@
70160
70410
  justify-content: flex-end !important;
70161
70411
  }
70162
70412
 
70413
+ .flex-md-end {
70414
+ display: flex;
70415
+ justify-content: flex-end;
70416
+ }
70417
+
70418
+ .flex-md-end--force {
70419
+ display: flex !important;
70420
+ justify-content: flex-end !important;
70421
+ }
70422
+
70163
70423
  .flex-md-justify-start {
70164
70424
  display: flex;
70165
70425
  justify-content: flex-start;
@@ -70170,6 +70430,16 @@
70170
70430
  justify-content: flex-start !important;
70171
70431
  }
70172
70432
 
70433
+ .flex-md-start {
70434
+ display: flex;
70435
+ justify-content: flex-start;
70436
+ }
70437
+
70438
+ .flex-md-start--force {
70439
+ display: flex !important;
70440
+ justify-content: flex-start !important;
70441
+ }
70442
+
70173
70443
  .flex-md-justify-inherit {
70174
70444
  display: flex;
70175
70445
  justify-content: inherit;
@@ -70180,6 +70450,16 @@
70180
70450
  justify-content: inherit !important;
70181
70451
  }
70182
70452
 
70453
+ .flex-md-inherit {
70454
+ display: flex;
70455
+ justify-content: inherit;
70456
+ }
70457
+
70458
+ .flex-md-inherit--force {
70459
+ display: flex !important;
70460
+ justify-content: inherit !important;
70461
+ }
70462
+
70183
70463
  .flex-md-justify-initial {
70184
70464
  display: flex;
70185
70465
  justify-content: initial;
@@ -70190,92 +70470,132 @@
70190
70470
  justify-content: initial !important;
70191
70471
  }
70192
70472
 
70193
- .flex-md-justify-left {
70473
+ .flex-md-initial {
70474
+ display: flex;
70475
+ justify-content: initial;
70476
+ }
70477
+
70478
+ .flex-md-initial--force {
70479
+ display: flex !important;
70480
+ justify-content: initial !important;
70481
+ }
70482
+
70483
+ .flex-md-left {
70194
70484
  display: flex;
70195
70485
  justify-content: left;
70196
70486
  }
70197
70487
 
70198
- .flex-md-justify-left--force {
70488
+ .flex-md-left--force {
70199
70489
  display: flex !important;
70200
70490
  justify-content: left !important;
70201
70491
  }
70202
70492
 
70203
- .flex-md-justify-normal {
70493
+ .flex-md-right {
70494
+ display: flex;
70495
+ justify-content: right;
70496
+ }
70497
+
70498
+ .flex-md-right--force {
70499
+ display: flex !important;
70500
+ justify-content: right !important;
70501
+ }
70502
+
70503
+ .flex-md-normal {
70204
70504
  display: flex;
70205
70505
  justify-content: normal;
70206
70506
  }
70207
70507
 
70208
- .flex-md-justify-normal--force {
70508
+ .flex-md-normal--force {
70209
70509
  display: flex !important;
70210
70510
  justify-content: normal !important;
70211
70511
  }
70212
70512
 
70213
- .flex-md-justify-revert {
70513
+ .flex-md-revert {
70214
70514
  display: flex;
70215
70515
  justify-content: revert;
70216
70516
  }
70217
70517
 
70218
- .flex-md-justify-revert--force {
70518
+ .flex-md-revert--force {
70219
70519
  display: flex !important;
70220
70520
  justify-content: revert !important;
70221
70521
  }
70222
70522
 
70223
- .flex-md-justify-right {
70523
+ .flex-md-space-around {
70224
70524
  display: flex;
70225
- justify-content: right;
70525
+ justify-content: space-around;
70226
70526
  }
70227
70527
 
70228
- .flex-md-justify-right--force {
70528
+ .flex-md-space-around--force {
70229
70529
  display: flex !important;
70230
- justify-content: right !important;
70530
+ justify-content: space-around !important;
70231
70531
  }
70232
70532
 
70233
- .flex-md-justify-space-around {
70533
+ .flex-md-around {
70234
70534
  display: flex;
70235
70535
  justify-content: space-around;
70236
70536
  }
70237
70537
 
70238
- .flex-md-justify-space-around--force {
70538
+ .flex-md-around--force {
70239
70539
  display: flex !important;
70240
70540
  justify-content: space-around !important;
70241
70541
  }
70242
70542
 
70243
- .flex-md-justify-space-between {
70543
+ .flex-md-space-between {
70244
70544
  display: flex;
70245
70545
  justify-content: space-between;
70246
70546
  }
70247
70547
 
70248
- .flex-md-justify-space-between--force {
70548
+ .flex-md-space-between--force {
70249
70549
  display: flex !important;
70250
70550
  justify-content: space-between !important;
70251
70551
  }
70252
70552
 
70253
- .flex-md-justify-space-evenly {
70553
+ .flex-md-between {
70554
+ display: flex;
70555
+ justify-content: space-between;
70556
+ }
70557
+
70558
+ .flex-md-between--force {
70559
+ display: flex !important;
70560
+ justify-content: space-between !important;
70561
+ }
70562
+
70563
+ .flex-md-space-evenly {
70564
+ display: flex;
70565
+ justify-content: space-evenly;
70566
+ }
70567
+
70568
+ .flex-md-space-evenly--force {
70569
+ display: flex !important;
70570
+ justify-content: space-evenly !important;
70571
+ }
70572
+
70573
+ .flex-md-evenly {
70254
70574
  display: flex;
70255
70575
  justify-content: space-evenly;
70256
70576
  }
70257
70577
 
70258
- .flex-md-justify-space-evenly--force {
70578
+ .flex-md-evenly--force {
70259
70579
  display: flex !important;
70260
70580
  justify-content: space-evenly !important;
70261
70581
  }
70262
70582
 
70263
- .flex-md-justify-stretch {
70583
+ .flex-md-stretch {
70264
70584
  display: flex;
70265
70585
  justify-content: stretch;
70266
70586
  }
70267
70587
 
70268
- .flex-md-justify-stretch--force {
70588
+ .flex-md-stretch--force {
70269
70589
  display: flex !important;
70270
70590
  justify-content: stretch !important;
70271
70591
  }
70272
70592
 
70273
- .flex-md-justify-unset {
70593
+ .flex-md-unset {
70274
70594
  display: flex;
70275
70595
  justify-content: unset;
70276
70596
  }
70277
70597
 
70278
- .flex-md-justify-unset--force {
70598
+ .flex-md-unset--force {
70279
70599
  display: flex !important;
70280
70600
  justify-content: unset !important;
70281
70601
  }
@@ -70492,6 +70812,16 @@
70492
70812
  justify-content: center !important;
70493
70813
  }
70494
70814
 
70815
+ .flex-lg-center {
70816
+ display: flex;
70817
+ justify-content: center;
70818
+ }
70819
+
70820
+ .flex-lg-center--force {
70821
+ display: flex !important;
70822
+ justify-content: center !important;
70823
+ }
70824
+
70495
70825
  .flex-lg-justify-end {
70496
70826
  display: flex;
70497
70827
  justify-content: flex-end;
@@ -70502,6 +70832,16 @@
70502
70832
  justify-content: flex-end !important;
70503
70833
  }
70504
70834
 
70835
+ .flex-lg-end {
70836
+ display: flex;
70837
+ justify-content: flex-end;
70838
+ }
70839
+
70840
+ .flex-lg-end--force {
70841
+ display: flex !important;
70842
+ justify-content: flex-end !important;
70843
+ }
70844
+
70505
70845
  .flex-lg-justify-start {
70506
70846
  display: flex;
70507
70847
  justify-content: flex-start;
@@ -70512,6 +70852,16 @@
70512
70852
  justify-content: flex-start !important;
70513
70853
  }
70514
70854
 
70855
+ .flex-lg-start {
70856
+ display: flex;
70857
+ justify-content: flex-start;
70858
+ }
70859
+
70860
+ .flex-lg-start--force {
70861
+ display: flex !important;
70862
+ justify-content: flex-start !important;
70863
+ }
70864
+
70515
70865
  .flex-lg-justify-inherit {
70516
70866
  display: flex;
70517
70867
  justify-content: inherit;
@@ -70522,6 +70872,16 @@
70522
70872
  justify-content: inherit !important;
70523
70873
  }
70524
70874
 
70875
+ .flex-lg-inherit {
70876
+ display: flex;
70877
+ justify-content: inherit;
70878
+ }
70879
+
70880
+ .flex-lg-inherit--force {
70881
+ display: flex !important;
70882
+ justify-content: inherit !important;
70883
+ }
70884
+
70525
70885
  .flex-lg-justify-initial {
70526
70886
  display: flex;
70527
70887
  justify-content: initial;
@@ -70532,92 +70892,132 @@
70532
70892
  justify-content: initial !important;
70533
70893
  }
70534
70894
 
70535
- .flex-lg-justify-left {
70895
+ .flex-lg-initial {
70896
+ display: flex;
70897
+ justify-content: initial;
70898
+ }
70899
+
70900
+ .flex-lg-initial--force {
70901
+ display: flex !important;
70902
+ justify-content: initial !important;
70903
+ }
70904
+
70905
+ .flex-lg-left {
70536
70906
  display: flex;
70537
70907
  justify-content: left;
70538
70908
  }
70539
70909
 
70540
- .flex-lg-justify-left--force {
70910
+ .flex-lg-left--force {
70541
70911
  display: flex !important;
70542
70912
  justify-content: left !important;
70543
70913
  }
70544
70914
 
70545
- .flex-lg-justify-normal {
70915
+ .flex-lg-right {
70916
+ display: flex;
70917
+ justify-content: right;
70918
+ }
70919
+
70920
+ .flex-lg-right--force {
70921
+ display: flex !important;
70922
+ justify-content: right !important;
70923
+ }
70924
+
70925
+ .flex-lg-normal {
70546
70926
  display: flex;
70547
70927
  justify-content: normal;
70548
70928
  }
70549
70929
 
70550
- .flex-lg-justify-normal--force {
70930
+ .flex-lg-normal--force {
70551
70931
  display: flex !important;
70552
70932
  justify-content: normal !important;
70553
70933
  }
70554
70934
 
70555
- .flex-lg-justify-revert {
70935
+ .flex-lg-revert {
70556
70936
  display: flex;
70557
70937
  justify-content: revert;
70558
70938
  }
70559
70939
 
70560
- .flex-lg-justify-revert--force {
70940
+ .flex-lg-revert--force {
70561
70941
  display: flex !important;
70562
70942
  justify-content: revert !important;
70563
70943
  }
70564
70944
 
70565
- .flex-lg-justify-right {
70945
+ .flex-lg-space-around {
70566
70946
  display: flex;
70567
- justify-content: right;
70947
+ justify-content: space-around;
70568
70948
  }
70569
70949
 
70570
- .flex-lg-justify-right--force {
70950
+ .flex-lg-space-around--force {
70571
70951
  display: flex !important;
70572
- justify-content: right !important;
70952
+ justify-content: space-around !important;
70573
70953
  }
70574
70954
 
70575
- .flex-lg-justify-space-around {
70955
+ .flex-lg-around {
70576
70956
  display: flex;
70577
70957
  justify-content: space-around;
70578
70958
  }
70579
70959
 
70580
- .flex-lg-justify-space-around--force {
70960
+ .flex-lg-around--force {
70581
70961
  display: flex !important;
70582
70962
  justify-content: space-around !important;
70583
70963
  }
70584
70964
 
70585
- .flex-lg-justify-space-between {
70965
+ .flex-lg-space-between {
70966
+ display: flex;
70967
+ justify-content: space-between;
70968
+ }
70969
+
70970
+ .flex-lg-space-between--force {
70971
+ display: flex !important;
70972
+ justify-content: space-between !important;
70973
+ }
70974
+
70975
+ .flex-lg-between {
70586
70976
  display: flex;
70587
70977
  justify-content: space-between;
70588
70978
  }
70589
70979
 
70590
- .flex-lg-justify-space-between--force {
70980
+ .flex-lg-between--force {
70591
70981
  display: flex !important;
70592
70982
  justify-content: space-between !important;
70593
70983
  }
70594
70984
 
70595
- .flex-lg-justify-space-evenly {
70985
+ .flex-lg-space-evenly {
70596
70986
  display: flex;
70597
70987
  justify-content: space-evenly;
70598
70988
  }
70599
70989
 
70600
- .flex-lg-justify-space-evenly--force {
70990
+ .flex-lg-space-evenly--force {
70601
70991
  display: flex !important;
70602
70992
  justify-content: space-evenly !important;
70603
70993
  }
70604
70994
 
70605
- .flex-lg-justify-stretch {
70995
+ .flex-lg-evenly {
70996
+ display: flex;
70997
+ justify-content: space-evenly;
70998
+ }
70999
+
71000
+ .flex-lg-evenly--force {
71001
+ display: flex !important;
71002
+ justify-content: space-evenly !important;
71003
+ }
71004
+
71005
+ .flex-lg-stretch {
70606
71006
  display: flex;
70607
71007
  justify-content: stretch;
70608
71008
  }
70609
71009
 
70610
- .flex-lg-justify-stretch--force {
71010
+ .flex-lg-stretch--force {
70611
71011
  display: flex !important;
70612
71012
  justify-content: stretch !important;
70613
71013
  }
70614
71014
 
70615
- .flex-lg-justify-unset {
71015
+ .flex-lg-unset {
70616
71016
  display: flex;
70617
71017
  justify-content: unset;
70618
71018
  }
70619
71019
 
70620
- .flex-lg-justify-unset--force {
71020
+ .flex-lg-unset--force {
70621
71021
  display: flex !important;
70622
71022
  justify-content: unset !important;
70623
71023
  }
@@ -70834,6 +71234,16 @@
70834
71234
  justify-content: center !important;
70835
71235
  }
70836
71236
 
71237
+ .flex-xl-center {
71238
+ display: flex;
71239
+ justify-content: center;
71240
+ }
71241
+
71242
+ .flex-xl-center--force {
71243
+ display: flex !important;
71244
+ justify-content: center !important;
71245
+ }
71246
+
70837
71247
  .flex-xl-justify-end {
70838
71248
  display: flex;
70839
71249
  justify-content: flex-end;
@@ -70844,6 +71254,16 @@
70844
71254
  justify-content: flex-end !important;
70845
71255
  }
70846
71256
 
71257
+ .flex-xl-end {
71258
+ display: flex;
71259
+ justify-content: flex-end;
71260
+ }
71261
+
71262
+ .flex-xl-end--force {
71263
+ display: flex !important;
71264
+ justify-content: flex-end !important;
71265
+ }
71266
+
70847
71267
  .flex-xl-justify-start {
70848
71268
  display: flex;
70849
71269
  justify-content: flex-start;
@@ -70854,6 +71274,16 @@
70854
71274
  justify-content: flex-start !important;
70855
71275
  }
70856
71276
 
71277
+ .flex-xl-start {
71278
+ display: flex;
71279
+ justify-content: flex-start;
71280
+ }
71281
+
71282
+ .flex-xl-start--force {
71283
+ display: flex !important;
71284
+ justify-content: flex-start !important;
71285
+ }
71286
+
70857
71287
  .flex-xl-justify-inherit {
70858
71288
  display: flex;
70859
71289
  justify-content: inherit;
@@ -70864,6 +71294,16 @@
70864
71294
  justify-content: inherit !important;
70865
71295
  }
70866
71296
 
71297
+ .flex-xl-inherit {
71298
+ display: flex;
71299
+ justify-content: inherit;
71300
+ }
71301
+
71302
+ .flex-xl-inherit--force {
71303
+ display: flex !important;
71304
+ justify-content: inherit !important;
71305
+ }
71306
+
70867
71307
  .flex-xl-justify-initial {
70868
71308
  display: flex;
70869
71309
  justify-content: initial;
@@ -70874,92 +71314,132 @@
70874
71314
  justify-content: initial !important;
70875
71315
  }
70876
71316
 
70877
- .flex-xl-justify-left {
71317
+ .flex-xl-initial {
71318
+ display: flex;
71319
+ justify-content: initial;
71320
+ }
71321
+
71322
+ .flex-xl-initial--force {
71323
+ display: flex !important;
71324
+ justify-content: initial !important;
71325
+ }
71326
+
71327
+ .flex-xl-left {
70878
71328
  display: flex;
70879
71329
  justify-content: left;
70880
71330
  }
70881
71331
 
70882
- .flex-xl-justify-left--force {
71332
+ .flex-xl-left--force {
70883
71333
  display: flex !important;
70884
71334
  justify-content: left !important;
70885
71335
  }
70886
71336
 
70887
- .flex-xl-justify-normal {
71337
+ .flex-xl-right {
71338
+ display: flex;
71339
+ justify-content: right;
71340
+ }
71341
+
71342
+ .flex-xl-right--force {
71343
+ display: flex !important;
71344
+ justify-content: right !important;
71345
+ }
71346
+
71347
+ .flex-xl-normal {
70888
71348
  display: flex;
70889
71349
  justify-content: normal;
70890
71350
  }
70891
71351
 
70892
- .flex-xl-justify-normal--force {
71352
+ .flex-xl-normal--force {
70893
71353
  display: flex !important;
70894
71354
  justify-content: normal !important;
70895
71355
  }
70896
71356
 
70897
- .flex-xl-justify-revert {
71357
+ .flex-xl-revert {
70898
71358
  display: flex;
70899
71359
  justify-content: revert;
70900
71360
  }
70901
71361
 
70902
- .flex-xl-justify-revert--force {
71362
+ .flex-xl-revert--force {
70903
71363
  display: flex !important;
70904
71364
  justify-content: revert !important;
70905
71365
  }
70906
71366
 
70907
- .flex-xl-justify-right {
71367
+ .flex-xl-space-around {
70908
71368
  display: flex;
70909
- justify-content: right;
71369
+ justify-content: space-around;
70910
71370
  }
70911
71371
 
70912
- .flex-xl-justify-right--force {
71372
+ .flex-xl-space-around--force {
70913
71373
  display: flex !important;
70914
- justify-content: right !important;
71374
+ justify-content: space-around !important;
70915
71375
  }
70916
71376
 
70917
- .flex-xl-justify-space-around {
71377
+ .flex-xl-around {
70918
71378
  display: flex;
70919
71379
  justify-content: space-around;
70920
71380
  }
70921
71381
 
70922
- .flex-xl-justify-space-around--force {
71382
+ .flex-xl-around--force {
70923
71383
  display: flex !important;
70924
71384
  justify-content: space-around !important;
70925
71385
  }
70926
71386
 
70927
- .flex-xl-justify-space-between {
71387
+ .flex-xl-space-between {
70928
71388
  display: flex;
70929
71389
  justify-content: space-between;
70930
71390
  }
70931
71391
 
70932
- .flex-xl-justify-space-between--force {
71392
+ .flex-xl-space-between--force {
70933
71393
  display: flex !important;
70934
71394
  justify-content: space-between !important;
70935
71395
  }
70936
71396
 
70937
- .flex-xl-justify-space-evenly {
71397
+ .flex-xl-between {
71398
+ display: flex;
71399
+ justify-content: space-between;
71400
+ }
71401
+
71402
+ .flex-xl-between--force {
71403
+ display: flex !important;
71404
+ justify-content: space-between !important;
71405
+ }
71406
+
71407
+ .flex-xl-space-evenly {
71408
+ display: flex;
71409
+ justify-content: space-evenly;
71410
+ }
71411
+
71412
+ .flex-xl-space-evenly--force {
71413
+ display: flex !important;
71414
+ justify-content: space-evenly !important;
71415
+ }
71416
+
71417
+ .flex-xl-evenly {
70938
71418
  display: flex;
70939
71419
  justify-content: space-evenly;
70940
71420
  }
70941
71421
 
70942
- .flex-xl-justify-space-evenly--force {
71422
+ .flex-xl-evenly--force {
70943
71423
  display: flex !important;
70944
71424
  justify-content: space-evenly !important;
70945
71425
  }
70946
71426
 
70947
- .flex-xl-justify-stretch {
71427
+ .flex-xl-stretch {
70948
71428
  display: flex;
70949
71429
  justify-content: stretch;
70950
71430
  }
70951
71431
 
70952
- .flex-xl-justify-stretch--force {
71432
+ .flex-xl-stretch--force {
70953
71433
  display: flex !important;
70954
71434
  justify-content: stretch !important;
70955
71435
  }
70956
71436
 
70957
- .flex-xl-justify-unset {
71437
+ .flex-xl-unset {
70958
71438
  display: flex;
70959
71439
  justify-content: unset;
70960
71440
  }
70961
71441
 
70962
- .flex-xl-justify-unset--force {
71442
+ .flex-xl-unset--force {
70963
71443
  display: flex !important;
70964
71444
  justify-content: unset !important;
70965
71445
  }