@kushagradhawan/kookie-ui 0.1.26 → 0.1.27
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/dist/cjs/components/grid.props.d.ts +36 -0
- package/dist/cjs/components/grid.props.d.ts.map +1 -1
- package/dist/cjs/components/grid.props.js +1 -1
- package/dist/cjs/components/grid.props.js.map +3 -3
- package/dist/cjs/props/layout.props.d.ts +34 -0
- package/dist/cjs/props/layout.props.d.ts.map +1 -1
- package/dist/cjs/props/layout.props.js +1 -1
- package/dist/cjs/props/layout.props.js.map +3 -3
- package/dist/esm/components/grid.props.d.ts +36 -0
- package/dist/esm/components/grid.props.d.ts.map +1 -1
- package/dist/esm/components/grid.props.js +1 -1
- package/dist/esm/components/grid.props.js.map +3 -3
- package/dist/esm/props/layout.props.d.ts +34 -0
- package/dist/esm/props/layout.props.d.ts.map +1 -1
- package/dist/esm/props/layout.props.js +1 -1
- package/dist/esm/props/layout.props.js.map +3 -3
- package/layout/utilities.css +366 -12
- package/layout.css +366 -12
- package/package.json +1 -1
- package/src/components/grid.props.tsx +58 -0
- package/src/props/layout.props.ts +38 -0
- package/src/styles/utilities/align-content.css +33 -0
- package/src/styles/utilities/align-self.css +2 -2
- package/src/styles/utilities/justify-items.css +21 -0
- package/src/styles/utilities/justify-self.css +21 -0
- package/src/styles/utilities/layout.css +3 -0
- package/styles.css +366 -12
- package/utilities.css +366 -12
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@import '../breakpoints.css';
|
|
2
2
|
|
|
3
|
+
@import './align-content.css';
|
|
3
4
|
@import './align-items.css';
|
|
4
5
|
@import './align-self.css';
|
|
5
6
|
@import './display.css';
|
|
@@ -25,6 +26,8 @@
|
|
|
25
26
|
@import './max-height.css';
|
|
26
27
|
@import './inset.css';
|
|
27
28
|
@import './justify-content.css';
|
|
29
|
+
@import './justify-items.css';
|
|
30
|
+
@import './justify-self.css';
|
|
28
31
|
@import './margin.css';
|
|
29
32
|
@import './overflow.css';
|
|
30
33
|
@import './padding.css';
|
package/styles.css
CHANGED
|
@@ -20328,6 +20328,160 @@
|
|
|
20328
20328
|
min-height: 100dvh;
|
|
20329
20329
|
}
|
|
20330
20330
|
}
|
|
20331
|
+
.rt-r-ac-start {
|
|
20332
|
+
align-content: start;
|
|
20333
|
+
}
|
|
20334
|
+
.rt-r-ac-center {
|
|
20335
|
+
align-content: center;
|
|
20336
|
+
}
|
|
20337
|
+
.rt-r-ac-end {
|
|
20338
|
+
align-content: end;
|
|
20339
|
+
}
|
|
20340
|
+
.rt-r-ac-baseline {
|
|
20341
|
+
align-content: baseline;
|
|
20342
|
+
}
|
|
20343
|
+
.rt-r-ac-stretch {
|
|
20344
|
+
align-content: stretch;
|
|
20345
|
+
}
|
|
20346
|
+
.rt-r-ac-space-between {
|
|
20347
|
+
align-content: space-between;
|
|
20348
|
+
}
|
|
20349
|
+
.rt-r-ac-space-around {
|
|
20350
|
+
align-content: space-around;
|
|
20351
|
+
}
|
|
20352
|
+
.rt-r-ac-space-evenly {
|
|
20353
|
+
align-content: space-evenly;
|
|
20354
|
+
}
|
|
20355
|
+
@media (min-width: 520px) {
|
|
20356
|
+
.xs\:rt-r-ac-start {
|
|
20357
|
+
align-content: start;
|
|
20358
|
+
}
|
|
20359
|
+
.xs\:rt-r-ac-center {
|
|
20360
|
+
align-content: center;
|
|
20361
|
+
}
|
|
20362
|
+
.xs\:rt-r-ac-end {
|
|
20363
|
+
align-content: end;
|
|
20364
|
+
}
|
|
20365
|
+
.xs\:rt-r-ac-baseline {
|
|
20366
|
+
align-content: baseline;
|
|
20367
|
+
}
|
|
20368
|
+
.xs\:rt-r-ac-stretch {
|
|
20369
|
+
align-content: stretch;
|
|
20370
|
+
}
|
|
20371
|
+
.xs\:rt-r-ac-space-between {
|
|
20372
|
+
align-content: space-between;
|
|
20373
|
+
}
|
|
20374
|
+
.xs\:rt-r-ac-space-around {
|
|
20375
|
+
align-content: space-around;
|
|
20376
|
+
}
|
|
20377
|
+
.xs\:rt-r-ac-space-evenly {
|
|
20378
|
+
align-content: space-evenly;
|
|
20379
|
+
}
|
|
20380
|
+
}
|
|
20381
|
+
@media (min-width: 768px) {
|
|
20382
|
+
.sm\:rt-r-ac-start {
|
|
20383
|
+
align-content: start;
|
|
20384
|
+
}
|
|
20385
|
+
.sm\:rt-r-ac-center {
|
|
20386
|
+
align-content: center;
|
|
20387
|
+
}
|
|
20388
|
+
.sm\:rt-r-ac-end {
|
|
20389
|
+
align-content: end;
|
|
20390
|
+
}
|
|
20391
|
+
.sm\:rt-r-ac-baseline {
|
|
20392
|
+
align-content: baseline;
|
|
20393
|
+
}
|
|
20394
|
+
.sm\:rt-r-ac-stretch {
|
|
20395
|
+
align-content: stretch;
|
|
20396
|
+
}
|
|
20397
|
+
.sm\:rt-r-ac-space-between {
|
|
20398
|
+
align-content: space-between;
|
|
20399
|
+
}
|
|
20400
|
+
.sm\:rt-r-ac-space-around {
|
|
20401
|
+
align-content: space-around;
|
|
20402
|
+
}
|
|
20403
|
+
.sm\:rt-r-ac-space-evenly {
|
|
20404
|
+
align-content: space-evenly;
|
|
20405
|
+
}
|
|
20406
|
+
}
|
|
20407
|
+
@media (min-width: 1024px) {
|
|
20408
|
+
.md\:rt-r-ac-start {
|
|
20409
|
+
align-content: start;
|
|
20410
|
+
}
|
|
20411
|
+
.md\:rt-r-ac-center {
|
|
20412
|
+
align-content: center;
|
|
20413
|
+
}
|
|
20414
|
+
.md\:rt-r-ac-end {
|
|
20415
|
+
align-content: end;
|
|
20416
|
+
}
|
|
20417
|
+
.md\:rt-r-ac-baseline {
|
|
20418
|
+
align-content: baseline;
|
|
20419
|
+
}
|
|
20420
|
+
.md\:rt-r-ac-stretch {
|
|
20421
|
+
align-content: stretch;
|
|
20422
|
+
}
|
|
20423
|
+
.md\:rt-r-ac-space-between {
|
|
20424
|
+
align-content: space-between;
|
|
20425
|
+
}
|
|
20426
|
+
.md\:rt-r-ac-space-around {
|
|
20427
|
+
align-content: space-around;
|
|
20428
|
+
}
|
|
20429
|
+
.md\:rt-r-ac-space-evenly {
|
|
20430
|
+
align-content: space-evenly;
|
|
20431
|
+
}
|
|
20432
|
+
}
|
|
20433
|
+
@media (min-width: 1280px) {
|
|
20434
|
+
.lg\:rt-r-ac-start {
|
|
20435
|
+
align-content: start;
|
|
20436
|
+
}
|
|
20437
|
+
.lg\:rt-r-ac-center {
|
|
20438
|
+
align-content: center;
|
|
20439
|
+
}
|
|
20440
|
+
.lg\:rt-r-ac-end {
|
|
20441
|
+
align-content: end;
|
|
20442
|
+
}
|
|
20443
|
+
.lg\:rt-r-ac-baseline {
|
|
20444
|
+
align-content: baseline;
|
|
20445
|
+
}
|
|
20446
|
+
.lg\:rt-r-ac-stretch {
|
|
20447
|
+
align-content: stretch;
|
|
20448
|
+
}
|
|
20449
|
+
.lg\:rt-r-ac-space-between {
|
|
20450
|
+
align-content: space-between;
|
|
20451
|
+
}
|
|
20452
|
+
.lg\:rt-r-ac-space-around {
|
|
20453
|
+
align-content: space-around;
|
|
20454
|
+
}
|
|
20455
|
+
.lg\:rt-r-ac-space-evenly {
|
|
20456
|
+
align-content: space-evenly;
|
|
20457
|
+
}
|
|
20458
|
+
}
|
|
20459
|
+
@media (min-width: 1640px) {
|
|
20460
|
+
.xl\:rt-r-ac-start {
|
|
20461
|
+
align-content: start;
|
|
20462
|
+
}
|
|
20463
|
+
.xl\:rt-r-ac-center {
|
|
20464
|
+
align-content: center;
|
|
20465
|
+
}
|
|
20466
|
+
.xl\:rt-r-ac-end {
|
|
20467
|
+
align-content: end;
|
|
20468
|
+
}
|
|
20469
|
+
.xl\:rt-r-ac-baseline {
|
|
20470
|
+
align-content: baseline;
|
|
20471
|
+
}
|
|
20472
|
+
.xl\:rt-r-ac-stretch {
|
|
20473
|
+
align-content: stretch;
|
|
20474
|
+
}
|
|
20475
|
+
.xl\:rt-r-ac-space-between {
|
|
20476
|
+
align-content: space-between;
|
|
20477
|
+
}
|
|
20478
|
+
.xl\:rt-r-ac-space-around {
|
|
20479
|
+
align-content: space-around;
|
|
20480
|
+
}
|
|
20481
|
+
.xl\:rt-r-ac-space-evenly {
|
|
20482
|
+
align-content: space-evenly;
|
|
20483
|
+
}
|
|
20484
|
+
}
|
|
20331
20485
|
.rt-r-ai-start {
|
|
20332
20486
|
align-items: flex-start;
|
|
20333
20487
|
}
|
|
@@ -20429,13 +20583,13 @@
|
|
|
20429
20583
|
}
|
|
20430
20584
|
}
|
|
20431
20585
|
.rt-r-as-start {
|
|
20432
|
-
align-self:
|
|
20586
|
+
align-self: start;
|
|
20433
20587
|
}
|
|
20434
20588
|
.rt-r-as-center {
|
|
20435
20589
|
align-self: center;
|
|
20436
20590
|
}
|
|
20437
20591
|
.rt-r-as-end {
|
|
20438
|
-
align-self:
|
|
20592
|
+
align-self: end;
|
|
20439
20593
|
}
|
|
20440
20594
|
.rt-r-as-baseline {
|
|
20441
20595
|
align-self: baseline;
|
|
@@ -20445,13 +20599,13 @@
|
|
|
20445
20599
|
}
|
|
20446
20600
|
@media (min-width: 520px) {
|
|
20447
20601
|
.xs\:rt-r-as-start {
|
|
20448
|
-
align-self:
|
|
20602
|
+
align-self: start;
|
|
20449
20603
|
}
|
|
20450
20604
|
.xs\:rt-r-as-center {
|
|
20451
20605
|
align-self: center;
|
|
20452
20606
|
}
|
|
20453
20607
|
.xs\:rt-r-as-end {
|
|
20454
|
-
align-self:
|
|
20608
|
+
align-self: end;
|
|
20455
20609
|
}
|
|
20456
20610
|
.xs\:rt-r-as-baseline {
|
|
20457
20611
|
align-self: baseline;
|
|
@@ -20462,13 +20616,13 @@
|
|
|
20462
20616
|
}
|
|
20463
20617
|
@media (min-width: 768px) {
|
|
20464
20618
|
.sm\:rt-r-as-start {
|
|
20465
|
-
align-self:
|
|
20619
|
+
align-self: start;
|
|
20466
20620
|
}
|
|
20467
20621
|
.sm\:rt-r-as-center {
|
|
20468
20622
|
align-self: center;
|
|
20469
20623
|
}
|
|
20470
20624
|
.sm\:rt-r-as-end {
|
|
20471
|
-
align-self:
|
|
20625
|
+
align-self: end;
|
|
20472
20626
|
}
|
|
20473
20627
|
.sm\:rt-r-as-baseline {
|
|
20474
20628
|
align-self: baseline;
|
|
@@ -20479,13 +20633,13 @@
|
|
|
20479
20633
|
}
|
|
20480
20634
|
@media (min-width: 1024px) {
|
|
20481
20635
|
.md\:rt-r-as-start {
|
|
20482
|
-
align-self:
|
|
20636
|
+
align-self: start;
|
|
20483
20637
|
}
|
|
20484
20638
|
.md\:rt-r-as-center {
|
|
20485
20639
|
align-self: center;
|
|
20486
20640
|
}
|
|
20487
20641
|
.md\:rt-r-as-end {
|
|
20488
|
-
align-self:
|
|
20642
|
+
align-self: end;
|
|
20489
20643
|
}
|
|
20490
20644
|
.md\:rt-r-as-baseline {
|
|
20491
20645
|
align-self: baseline;
|
|
@@ -20496,13 +20650,13 @@
|
|
|
20496
20650
|
}
|
|
20497
20651
|
@media (min-width: 1280px) {
|
|
20498
20652
|
.lg\:rt-r-as-start {
|
|
20499
|
-
align-self:
|
|
20653
|
+
align-self: start;
|
|
20500
20654
|
}
|
|
20501
20655
|
.lg\:rt-r-as-center {
|
|
20502
20656
|
align-self: center;
|
|
20503
20657
|
}
|
|
20504
20658
|
.lg\:rt-r-as-end {
|
|
20505
|
-
align-self:
|
|
20659
|
+
align-self: end;
|
|
20506
20660
|
}
|
|
20507
20661
|
.lg\:rt-r-as-baseline {
|
|
20508
20662
|
align-self: baseline;
|
|
@@ -20513,13 +20667,13 @@
|
|
|
20513
20667
|
}
|
|
20514
20668
|
@media (min-width: 1640px) {
|
|
20515
20669
|
.xl\:rt-r-as-start {
|
|
20516
|
-
align-self:
|
|
20670
|
+
align-self: start;
|
|
20517
20671
|
}
|
|
20518
20672
|
.xl\:rt-r-as-center {
|
|
20519
20673
|
align-self: center;
|
|
20520
20674
|
}
|
|
20521
20675
|
.xl\:rt-r-as-end {
|
|
20522
|
-
align-self:
|
|
20676
|
+
align-self: end;
|
|
20523
20677
|
}
|
|
20524
20678
|
.xl\:rt-r-as-baseline {
|
|
20525
20679
|
align-self: baseline;
|
|
@@ -24488,6 +24642,206 @@
|
|
|
24488
24642
|
justify-content: space-between;
|
|
24489
24643
|
}
|
|
24490
24644
|
}
|
|
24645
|
+
.rt-r-ji-start {
|
|
24646
|
+
justify-items: start;
|
|
24647
|
+
}
|
|
24648
|
+
.rt-r-ji-center {
|
|
24649
|
+
justify-items: center;
|
|
24650
|
+
}
|
|
24651
|
+
.rt-r-ji-end {
|
|
24652
|
+
justify-items: end;
|
|
24653
|
+
}
|
|
24654
|
+
.rt-r-ji-baseline {
|
|
24655
|
+
justify-items: baseline;
|
|
24656
|
+
}
|
|
24657
|
+
.rt-r-ji-stretch {
|
|
24658
|
+
justify-items: stretch;
|
|
24659
|
+
}
|
|
24660
|
+
@media (min-width: 520px) {
|
|
24661
|
+
.xs\:rt-r-ji-start {
|
|
24662
|
+
justify-items: start;
|
|
24663
|
+
}
|
|
24664
|
+
.xs\:rt-r-ji-center {
|
|
24665
|
+
justify-items: center;
|
|
24666
|
+
}
|
|
24667
|
+
.xs\:rt-r-ji-end {
|
|
24668
|
+
justify-items: end;
|
|
24669
|
+
}
|
|
24670
|
+
.xs\:rt-r-ji-baseline {
|
|
24671
|
+
justify-items: baseline;
|
|
24672
|
+
}
|
|
24673
|
+
.xs\:rt-r-ji-stretch {
|
|
24674
|
+
justify-items: stretch;
|
|
24675
|
+
}
|
|
24676
|
+
}
|
|
24677
|
+
@media (min-width: 768px) {
|
|
24678
|
+
.sm\:rt-r-ji-start {
|
|
24679
|
+
justify-items: start;
|
|
24680
|
+
}
|
|
24681
|
+
.sm\:rt-r-ji-center {
|
|
24682
|
+
justify-items: center;
|
|
24683
|
+
}
|
|
24684
|
+
.sm\:rt-r-ji-end {
|
|
24685
|
+
justify-items: end;
|
|
24686
|
+
}
|
|
24687
|
+
.sm\:rt-r-ji-baseline {
|
|
24688
|
+
justify-items: baseline;
|
|
24689
|
+
}
|
|
24690
|
+
.sm\:rt-r-ji-stretch {
|
|
24691
|
+
justify-items: stretch;
|
|
24692
|
+
}
|
|
24693
|
+
}
|
|
24694
|
+
@media (min-width: 1024px) {
|
|
24695
|
+
.md\:rt-r-ji-start {
|
|
24696
|
+
justify-items: start;
|
|
24697
|
+
}
|
|
24698
|
+
.md\:rt-r-ji-center {
|
|
24699
|
+
justify-items: center;
|
|
24700
|
+
}
|
|
24701
|
+
.md\:rt-r-ji-end {
|
|
24702
|
+
justify-items: end;
|
|
24703
|
+
}
|
|
24704
|
+
.md\:rt-r-ji-baseline {
|
|
24705
|
+
justify-items: baseline;
|
|
24706
|
+
}
|
|
24707
|
+
.md\:rt-r-ji-stretch {
|
|
24708
|
+
justify-items: stretch;
|
|
24709
|
+
}
|
|
24710
|
+
}
|
|
24711
|
+
@media (min-width: 1280px) {
|
|
24712
|
+
.lg\:rt-r-ji-start {
|
|
24713
|
+
justify-items: start;
|
|
24714
|
+
}
|
|
24715
|
+
.lg\:rt-r-ji-center {
|
|
24716
|
+
justify-items: center;
|
|
24717
|
+
}
|
|
24718
|
+
.lg\:rt-r-ji-end {
|
|
24719
|
+
justify-items: end;
|
|
24720
|
+
}
|
|
24721
|
+
.lg\:rt-r-ji-baseline {
|
|
24722
|
+
justify-items: baseline;
|
|
24723
|
+
}
|
|
24724
|
+
.lg\:rt-r-ji-stretch {
|
|
24725
|
+
justify-items: stretch;
|
|
24726
|
+
}
|
|
24727
|
+
}
|
|
24728
|
+
@media (min-width: 1640px) {
|
|
24729
|
+
.xl\:rt-r-ji-start {
|
|
24730
|
+
justify-items: start;
|
|
24731
|
+
}
|
|
24732
|
+
.xl\:rt-r-ji-center {
|
|
24733
|
+
justify-items: center;
|
|
24734
|
+
}
|
|
24735
|
+
.xl\:rt-r-ji-end {
|
|
24736
|
+
justify-items: end;
|
|
24737
|
+
}
|
|
24738
|
+
.xl\:rt-r-ji-baseline {
|
|
24739
|
+
justify-items: baseline;
|
|
24740
|
+
}
|
|
24741
|
+
.xl\:rt-r-ji-stretch {
|
|
24742
|
+
justify-items: stretch;
|
|
24743
|
+
}
|
|
24744
|
+
}
|
|
24745
|
+
.rt-r-js-start {
|
|
24746
|
+
justify-self: start;
|
|
24747
|
+
}
|
|
24748
|
+
.rt-r-js-center {
|
|
24749
|
+
justify-self: center;
|
|
24750
|
+
}
|
|
24751
|
+
.rt-r-js-end {
|
|
24752
|
+
justify-self: end;
|
|
24753
|
+
}
|
|
24754
|
+
.rt-r-js-baseline {
|
|
24755
|
+
justify-self: baseline;
|
|
24756
|
+
}
|
|
24757
|
+
.rt-r-js-stretch {
|
|
24758
|
+
justify-self: stretch;
|
|
24759
|
+
}
|
|
24760
|
+
@media (min-width: 520px) {
|
|
24761
|
+
.xs\:rt-r-js-start {
|
|
24762
|
+
justify-self: start;
|
|
24763
|
+
}
|
|
24764
|
+
.xs\:rt-r-js-center {
|
|
24765
|
+
justify-self: center;
|
|
24766
|
+
}
|
|
24767
|
+
.xs\:rt-r-js-end {
|
|
24768
|
+
justify-self: end;
|
|
24769
|
+
}
|
|
24770
|
+
.xs\:rt-r-js-baseline {
|
|
24771
|
+
justify-self: baseline;
|
|
24772
|
+
}
|
|
24773
|
+
.xs\:rt-r-js-stretch {
|
|
24774
|
+
justify-self: stretch;
|
|
24775
|
+
}
|
|
24776
|
+
}
|
|
24777
|
+
@media (min-width: 768px) {
|
|
24778
|
+
.sm\:rt-r-js-start {
|
|
24779
|
+
justify-self: start;
|
|
24780
|
+
}
|
|
24781
|
+
.sm\:rt-r-js-center {
|
|
24782
|
+
justify-self: center;
|
|
24783
|
+
}
|
|
24784
|
+
.sm\:rt-r-js-end {
|
|
24785
|
+
justify-self: end;
|
|
24786
|
+
}
|
|
24787
|
+
.sm\:rt-r-js-baseline {
|
|
24788
|
+
justify-self: baseline;
|
|
24789
|
+
}
|
|
24790
|
+
.sm\:rt-r-js-stretch {
|
|
24791
|
+
justify-self: stretch;
|
|
24792
|
+
}
|
|
24793
|
+
}
|
|
24794
|
+
@media (min-width: 1024px) {
|
|
24795
|
+
.md\:rt-r-js-start {
|
|
24796
|
+
justify-self: start;
|
|
24797
|
+
}
|
|
24798
|
+
.md\:rt-r-js-center {
|
|
24799
|
+
justify-self: center;
|
|
24800
|
+
}
|
|
24801
|
+
.md\:rt-r-js-end {
|
|
24802
|
+
justify-self: end;
|
|
24803
|
+
}
|
|
24804
|
+
.md\:rt-r-js-baseline {
|
|
24805
|
+
justify-self: baseline;
|
|
24806
|
+
}
|
|
24807
|
+
.md\:rt-r-js-stretch {
|
|
24808
|
+
justify-self: stretch;
|
|
24809
|
+
}
|
|
24810
|
+
}
|
|
24811
|
+
@media (min-width: 1280px) {
|
|
24812
|
+
.lg\:rt-r-js-start {
|
|
24813
|
+
justify-self: start;
|
|
24814
|
+
}
|
|
24815
|
+
.lg\:rt-r-js-center {
|
|
24816
|
+
justify-self: center;
|
|
24817
|
+
}
|
|
24818
|
+
.lg\:rt-r-js-end {
|
|
24819
|
+
justify-self: end;
|
|
24820
|
+
}
|
|
24821
|
+
.lg\:rt-r-js-baseline {
|
|
24822
|
+
justify-self: baseline;
|
|
24823
|
+
}
|
|
24824
|
+
.lg\:rt-r-js-stretch {
|
|
24825
|
+
justify-self: stretch;
|
|
24826
|
+
}
|
|
24827
|
+
}
|
|
24828
|
+
@media (min-width: 1640px) {
|
|
24829
|
+
.xl\:rt-r-js-start {
|
|
24830
|
+
justify-self: start;
|
|
24831
|
+
}
|
|
24832
|
+
.xl\:rt-r-js-center {
|
|
24833
|
+
justify-self: center;
|
|
24834
|
+
}
|
|
24835
|
+
.xl\:rt-r-js-end {
|
|
24836
|
+
justify-self: end;
|
|
24837
|
+
}
|
|
24838
|
+
.xl\:rt-r-js-baseline {
|
|
24839
|
+
justify-self: baseline;
|
|
24840
|
+
}
|
|
24841
|
+
.xl\:rt-r-js-stretch {
|
|
24842
|
+
justify-self: stretch;
|
|
24843
|
+
}
|
|
24844
|
+
}
|
|
24491
24845
|
.rt-r-m,
|
|
24492
24846
|
.rt-r-m-0,
|
|
24493
24847
|
.rt-r-m-1,
|