design-system-silkhaus 0.0.10 → 0.0.12
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/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/dist/style.css +453 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -3511,7 +3511,7 @@ const Input = React.forwardRef(
|
|
|
3511
3511
|
disabled,
|
|
3512
3512
|
className: twMerge(clsx$1(variants[color], className))
|
|
3513
3513
|
}, rest)
|
|
3514
|
-
) : /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "flex flex-col items-start", children: [
|
|
3514
|
+
) : /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "flex flex-col items-start w-full", children: [
|
|
3515
3515
|
label && /* @__PURE__ */ jsxRuntimeExports.jsx("label", { className: "text-mediumSubHead font-normal", children: label }),
|
|
3516
3516
|
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
3517
3517
|
"input",
|
package/dist/index.js
CHANGED
|
@@ -3493,7 +3493,7 @@ const Input = React__default.forwardRef(
|
|
|
3493
3493
|
disabled,
|
|
3494
3494
|
className: twMerge(clsx$1(variants[color], className))
|
|
3495
3495
|
}, rest)
|
|
3496
|
-
) : /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "flex flex-col items-start", children: [
|
|
3496
|
+
) : /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "flex flex-col items-start w-full", children: [
|
|
3497
3497
|
label && /* @__PURE__ */ jsxRuntimeExports.jsx("label", { className: "text-mediumSubHead font-normal", children: label }),
|
|
3498
3498
|
/* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
3499
3499
|
"input",
|
package/dist/style.css
CHANGED
|
@@ -11370,12 +11370,465 @@ video {
|
|
|
11370
11370
|
.text-pretty {
|
|
11371
11371
|
text-wrap: pretty;
|
|
11372
11372
|
}
|
|
11373
|
+
.rounded-2xl {
|
|
11374
|
+
border-radius: 1rem;
|
|
11375
|
+
}
|
|
11376
|
+
.rounded-3xl {
|
|
11377
|
+
border-radius: 1.5rem;
|
|
11378
|
+
}
|
|
11373
11379
|
.rounded-\[24px_24px_0px_24px\] {
|
|
11374
11380
|
border-radius: 24px 24px 0px 24px;
|
|
11375
11381
|
}
|
|
11382
|
+
.rounded-full {
|
|
11383
|
+
border-radius: 9999px;
|
|
11384
|
+
}
|
|
11385
|
+
.rounded-lg {
|
|
11386
|
+
border-radius: 0.5rem;
|
|
11387
|
+
}
|
|
11388
|
+
.rounded-md {
|
|
11389
|
+
border-radius: 0.375rem;
|
|
11390
|
+
}
|
|
11391
|
+
.rounded-none {
|
|
11392
|
+
border-radius: 0px;
|
|
11393
|
+
}
|
|
11376
11394
|
.rounded-sm {
|
|
11377
11395
|
border-radius: 0.125rem;
|
|
11378
11396
|
}
|
|
11397
|
+
.rounded-xl {
|
|
11398
|
+
border-radius: 0.75rem;
|
|
11399
|
+
}
|
|
11400
|
+
.rounded-b {
|
|
11401
|
+
border-bottom-right-radius: 0.25rem;
|
|
11402
|
+
border-bottom-left-radius: 0.25rem;
|
|
11403
|
+
}
|
|
11404
|
+
.rounded-b-2xl {
|
|
11405
|
+
border-bottom-right-radius: 1rem;
|
|
11406
|
+
border-bottom-left-radius: 1rem;
|
|
11407
|
+
}
|
|
11408
|
+
.rounded-b-3xl {
|
|
11409
|
+
border-bottom-right-radius: 1.5rem;
|
|
11410
|
+
border-bottom-left-radius: 1.5rem;
|
|
11411
|
+
}
|
|
11412
|
+
.rounded-b-full {
|
|
11413
|
+
border-bottom-right-radius: 9999px;
|
|
11414
|
+
border-bottom-left-radius: 9999px;
|
|
11415
|
+
}
|
|
11416
|
+
.rounded-b-lg {
|
|
11417
|
+
border-bottom-right-radius: 0.5rem;
|
|
11418
|
+
border-bottom-left-radius: 0.5rem;
|
|
11419
|
+
}
|
|
11420
|
+
.rounded-b-md {
|
|
11421
|
+
border-bottom-right-radius: 0.375rem;
|
|
11422
|
+
border-bottom-left-radius: 0.375rem;
|
|
11423
|
+
}
|
|
11424
|
+
.rounded-b-none {
|
|
11425
|
+
border-bottom-right-radius: 0px;
|
|
11426
|
+
border-bottom-left-radius: 0px;
|
|
11427
|
+
}
|
|
11428
|
+
.rounded-b-sm {
|
|
11429
|
+
border-bottom-right-radius: 0.125rem;
|
|
11430
|
+
border-bottom-left-radius: 0.125rem;
|
|
11431
|
+
}
|
|
11432
|
+
.rounded-b-xl {
|
|
11433
|
+
border-bottom-right-radius: 0.75rem;
|
|
11434
|
+
border-bottom-left-radius: 0.75rem;
|
|
11435
|
+
}
|
|
11436
|
+
.rounded-e {
|
|
11437
|
+
border-start-end-radius: 0.25rem;
|
|
11438
|
+
border-end-end-radius: 0.25rem;
|
|
11439
|
+
}
|
|
11440
|
+
.rounded-e-2xl {
|
|
11441
|
+
border-start-end-radius: 1rem;
|
|
11442
|
+
border-end-end-radius: 1rem;
|
|
11443
|
+
}
|
|
11444
|
+
.rounded-e-3xl {
|
|
11445
|
+
border-start-end-radius: 1.5rem;
|
|
11446
|
+
border-end-end-radius: 1.5rem;
|
|
11447
|
+
}
|
|
11448
|
+
.rounded-e-full {
|
|
11449
|
+
border-start-end-radius: 9999px;
|
|
11450
|
+
border-end-end-radius: 9999px;
|
|
11451
|
+
}
|
|
11452
|
+
.rounded-e-lg {
|
|
11453
|
+
border-start-end-radius: 0.5rem;
|
|
11454
|
+
border-end-end-radius: 0.5rem;
|
|
11455
|
+
}
|
|
11456
|
+
.rounded-e-md {
|
|
11457
|
+
border-start-end-radius: 0.375rem;
|
|
11458
|
+
border-end-end-radius: 0.375rem;
|
|
11459
|
+
}
|
|
11460
|
+
.rounded-e-none {
|
|
11461
|
+
border-start-end-radius: 0px;
|
|
11462
|
+
border-end-end-radius: 0px;
|
|
11463
|
+
}
|
|
11464
|
+
.rounded-e-sm {
|
|
11465
|
+
border-start-end-radius: 0.125rem;
|
|
11466
|
+
border-end-end-radius: 0.125rem;
|
|
11467
|
+
}
|
|
11468
|
+
.rounded-e-xl {
|
|
11469
|
+
border-start-end-radius: 0.75rem;
|
|
11470
|
+
border-end-end-radius: 0.75rem;
|
|
11471
|
+
}
|
|
11472
|
+
.rounded-l {
|
|
11473
|
+
border-top-left-radius: 0.25rem;
|
|
11474
|
+
border-bottom-left-radius: 0.25rem;
|
|
11475
|
+
}
|
|
11476
|
+
.rounded-l-2xl {
|
|
11477
|
+
border-top-left-radius: 1rem;
|
|
11478
|
+
border-bottom-left-radius: 1rem;
|
|
11479
|
+
}
|
|
11480
|
+
.rounded-l-3xl {
|
|
11481
|
+
border-top-left-radius: 1.5rem;
|
|
11482
|
+
border-bottom-left-radius: 1.5rem;
|
|
11483
|
+
}
|
|
11484
|
+
.rounded-l-full {
|
|
11485
|
+
border-top-left-radius: 9999px;
|
|
11486
|
+
border-bottom-left-radius: 9999px;
|
|
11487
|
+
}
|
|
11488
|
+
.rounded-l-lg {
|
|
11489
|
+
border-top-left-radius: 0.5rem;
|
|
11490
|
+
border-bottom-left-radius: 0.5rem;
|
|
11491
|
+
}
|
|
11492
|
+
.rounded-l-md {
|
|
11493
|
+
border-top-left-radius: 0.375rem;
|
|
11494
|
+
border-bottom-left-radius: 0.375rem;
|
|
11495
|
+
}
|
|
11496
|
+
.rounded-l-none {
|
|
11497
|
+
border-top-left-radius: 0px;
|
|
11498
|
+
border-bottom-left-radius: 0px;
|
|
11499
|
+
}
|
|
11500
|
+
.rounded-l-sm {
|
|
11501
|
+
border-top-left-radius: 0.125rem;
|
|
11502
|
+
border-bottom-left-radius: 0.125rem;
|
|
11503
|
+
}
|
|
11504
|
+
.rounded-l-xl {
|
|
11505
|
+
border-top-left-radius: 0.75rem;
|
|
11506
|
+
border-bottom-left-radius: 0.75rem;
|
|
11507
|
+
}
|
|
11508
|
+
.rounded-r {
|
|
11509
|
+
border-top-right-radius: 0.25rem;
|
|
11510
|
+
border-bottom-right-radius: 0.25rem;
|
|
11511
|
+
}
|
|
11512
|
+
.rounded-r-2xl {
|
|
11513
|
+
border-top-right-radius: 1rem;
|
|
11514
|
+
border-bottom-right-radius: 1rem;
|
|
11515
|
+
}
|
|
11516
|
+
.rounded-r-3xl {
|
|
11517
|
+
border-top-right-radius: 1.5rem;
|
|
11518
|
+
border-bottom-right-radius: 1.5rem;
|
|
11519
|
+
}
|
|
11520
|
+
.rounded-r-full {
|
|
11521
|
+
border-top-right-radius: 9999px;
|
|
11522
|
+
border-bottom-right-radius: 9999px;
|
|
11523
|
+
}
|
|
11524
|
+
.rounded-r-lg {
|
|
11525
|
+
border-top-right-radius: 0.5rem;
|
|
11526
|
+
border-bottom-right-radius: 0.5rem;
|
|
11527
|
+
}
|
|
11528
|
+
.rounded-r-md {
|
|
11529
|
+
border-top-right-radius: 0.375rem;
|
|
11530
|
+
border-bottom-right-radius: 0.375rem;
|
|
11531
|
+
}
|
|
11532
|
+
.rounded-r-none {
|
|
11533
|
+
border-top-right-radius: 0px;
|
|
11534
|
+
border-bottom-right-radius: 0px;
|
|
11535
|
+
}
|
|
11536
|
+
.rounded-r-sm {
|
|
11537
|
+
border-top-right-radius: 0.125rem;
|
|
11538
|
+
border-bottom-right-radius: 0.125rem;
|
|
11539
|
+
}
|
|
11540
|
+
.rounded-r-xl {
|
|
11541
|
+
border-top-right-radius: 0.75rem;
|
|
11542
|
+
border-bottom-right-radius: 0.75rem;
|
|
11543
|
+
}
|
|
11544
|
+
.rounded-s {
|
|
11545
|
+
border-start-start-radius: 0.25rem;
|
|
11546
|
+
border-end-start-radius: 0.25rem;
|
|
11547
|
+
}
|
|
11548
|
+
.rounded-s-2xl {
|
|
11549
|
+
border-start-start-radius: 1rem;
|
|
11550
|
+
border-end-start-radius: 1rem;
|
|
11551
|
+
}
|
|
11552
|
+
.rounded-s-3xl {
|
|
11553
|
+
border-start-start-radius: 1.5rem;
|
|
11554
|
+
border-end-start-radius: 1.5rem;
|
|
11555
|
+
}
|
|
11556
|
+
.rounded-s-full {
|
|
11557
|
+
border-start-start-radius: 9999px;
|
|
11558
|
+
border-end-start-radius: 9999px;
|
|
11559
|
+
}
|
|
11560
|
+
.rounded-s-lg {
|
|
11561
|
+
border-start-start-radius: 0.5rem;
|
|
11562
|
+
border-end-start-radius: 0.5rem;
|
|
11563
|
+
}
|
|
11564
|
+
.rounded-s-md {
|
|
11565
|
+
border-start-start-radius: 0.375rem;
|
|
11566
|
+
border-end-start-radius: 0.375rem;
|
|
11567
|
+
}
|
|
11568
|
+
.rounded-s-none {
|
|
11569
|
+
border-start-start-radius: 0px;
|
|
11570
|
+
border-end-start-radius: 0px;
|
|
11571
|
+
}
|
|
11572
|
+
.rounded-s-sm {
|
|
11573
|
+
border-start-start-radius: 0.125rem;
|
|
11574
|
+
border-end-start-radius: 0.125rem;
|
|
11575
|
+
}
|
|
11576
|
+
.rounded-s-xl {
|
|
11577
|
+
border-start-start-radius: 0.75rem;
|
|
11578
|
+
border-end-start-radius: 0.75rem;
|
|
11579
|
+
}
|
|
11580
|
+
.rounded-t {
|
|
11581
|
+
border-top-left-radius: 0.25rem;
|
|
11582
|
+
border-top-right-radius: 0.25rem;
|
|
11583
|
+
}
|
|
11584
|
+
.rounded-t-2xl {
|
|
11585
|
+
border-top-left-radius: 1rem;
|
|
11586
|
+
border-top-right-radius: 1rem;
|
|
11587
|
+
}
|
|
11588
|
+
.rounded-t-3xl {
|
|
11589
|
+
border-top-left-radius: 1.5rem;
|
|
11590
|
+
border-top-right-radius: 1.5rem;
|
|
11591
|
+
}
|
|
11592
|
+
.rounded-t-full {
|
|
11593
|
+
border-top-left-radius: 9999px;
|
|
11594
|
+
border-top-right-radius: 9999px;
|
|
11595
|
+
}
|
|
11596
|
+
.rounded-t-lg {
|
|
11597
|
+
border-top-left-radius: 0.5rem;
|
|
11598
|
+
border-top-right-radius: 0.5rem;
|
|
11599
|
+
}
|
|
11600
|
+
.rounded-t-md {
|
|
11601
|
+
border-top-left-radius: 0.375rem;
|
|
11602
|
+
border-top-right-radius: 0.375rem;
|
|
11603
|
+
}
|
|
11604
|
+
.rounded-t-none {
|
|
11605
|
+
border-top-left-radius: 0px;
|
|
11606
|
+
border-top-right-radius: 0px;
|
|
11607
|
+
}
|
|
11608
|
+
.rounded-t-sm {
|
|
11609
|
+
border-top-left-radius: 0.125rem;
|
|
11610
|
+
border-top-right-radius: 0.125rem;
|
|
11611
|
+
}
|
|
11612
|
+
.rounded-t-xl {
|
|
11613
|
+
border-top-left-radius: 0.75rem;
|
|
11614
|
+
border-top-right-radius: 0.75rem;
|
|
11615
|
+
}
|
|
11616
|
+
.rounded-bl {
|
|
11617
|
+
border-bottom-left-radius: 0.25rem;
|
|
11618
|
+
}
|
|
11619
|
+
.rounded-bl-2xl {
|
|
11620
|
+
border-bottom-left-radius: 1rem;
|
|
11621
|
+
}
|
|
11622
|
+
.rounded-bl-3xl {
|
|
11623
|
+
border-bottom-left-radius: 1.5rem;
|
|
11624
|
+
}
|
|
11625
|
+
.rounded-bl-full {
|
|
11626
|
+
border-bottom-left-radius: 9999px;
|
|
11627
|
+
}
|
|
11628
|
+
.rounded-bl-lg {
|
|
11629
|
+
border-bottom-left-radius: 0.5rem;
|
|
11630
|
+
}
|
|
11631
|
+
.rounded-bl-md {
|
|
11632
|
+
border-bottom-left-radius: 0.375rem;
|
|
11633
|
+
}
|
|
11634
|
+
.rounded-bl-none {
|
|
11635
|
+
border-bottom-left-radius: 0px;
|
|
11636
|
+
}
|
|
11637
|
+
.rounded-bl-sm {
|
|
11638
|
+
border-bottom-left-radius: 0.125rem;
|
|
11639
|
+
}
|
|
11640
|
+
.rounded-bl-xl {
|
|
11641
|
+
border-bottom-left-radius: 0.75rem;
|
|
11642
|
+
}
|
|
11643
|
+
.rounded-br {
|
|
11644
|
+
border-bottom-right-radius: 0.25rem;
|
|
11645
|
+
}
|
|
11646
|
+
.rounded-br-2xl {
|
|
11647
|
+
border-bottom-right-radius: 1rem;
|
|
11648
|
+
}
|
|
11649
|
+
.rounded-br-3xl {
|
|
11650
|
+
border-bottom-right-radius: 1.5rem;
|
|
11651
|
+
}
|
|
11652
|
+
.rounded-br-full {
|
|
11653
|
+
border-bottom-right-radius: 9999px;
|
|
11654
|
+
}
|
|
11655
|
+
.rounded-br-lg {
|
|
11656
|
+
border-bottom-right-radius: 0.5rem;
|
|
11657
|
+
}
|
|
11658
|
+
.rounded-br-md {
|
|
11659
|
+
border-bottom-right-radius: 0.375rem;
|
|
11660
|
+
}
|
|
11661
|
+
.rounded-br-none {
|
|
11662
|
+
border-bottom-right-radius: 0px;
|
|
11663
|
+
}
|
|
11664
|
+
.rounded-br-sm {
|
|
11665
|
+
border-bottom-right-radius: 0.125rem;
|
|
11666
|
+
}
|
|
11667
|
+
.rounded-br-xl {
|
|
11668
|
+
border-bottom-right-radius: 0.75rem;
|
|
11669
|
+
}
|
|
11670
|
+
.rounded-ee {
|
|
11671
|
+
border-end-end-radius: 0.25rem;
|
|
11672
|
+
}
|
|
11673
|
+
.rounded-ee-2xl {
|
|
11674
|
+
border-end-end-radius: 1rem;
|
|
11675
|
+
}
|
|
11676
|
+
.rounded-ee-3xl {
|
|
11677
|
+
border-end-end-radius: 1.5rem;
|
|
11678
|
+
}
|
|
11679
|
+
.rounded-ee-full {
|
|
11680
|
+
border-end-end-radius: 9999px;
|
|
11681
|
+
}
|
|
11682
|
+
.rounded-ee-lg {
|
|
11683
|
+
border-end-end-radius: 0.5rem;
|
|
11684
|
+
}
|
|
11685
|
+
.rounded-ee-md {
|
|
11686
|
+
border-end-end-radius: 0.375rem;
|
|
11687
|
+
}
|
|
11688
|
+
.rounded-ee-none {
|
|
11689
|
+
border-end-end-radius: 0px;
|
|
11690
|
+
}
|
|
11691
|
+
.rounded-ee-sm {
|
|
11692
|
+
border-end-end-radius: 0.125rem;
|
|
11693
|
+
}
|
|
11694
|
+
.rounded-ee-xl {
|
|
11695
|
+
border-end-end-radius: 0.75rem;
|
|
11696
|
+
}
|
|
11697
|
+
.rounded-es {
|
|
11698
|
+
border-end-start-radius: 0.25rem;
|
|
11699
|
+
}
|
|
11700
|
+
.rounded-es-2xl {
|
|
11701
|
+
border-end-start-radius: 1rem;
|
|
11702
|
+
}
|
|
11703
|
+
.rounded-es-3xl {
|
|
11704
|
+
border-end-start-radius: 1.5rem;
|
|
11705
|
+
}
|
|
11706
|
+
.rounded-es-full {
|
|
11707
|
+
border-end-start-radius: 9999px;
|
|
11708
|
+
}
|
|
11709
|
+
.rounded-es-lg {
|
|
11710
|
+
border-end-start-radius: 0.5rem;
|
|
11711
|
+
}
|
|
11712
|
+
.rounded-es-md {
|
|
11713
|
+
border-end-start-radius: 0.375rem;
|
|
11714
|
+
}
|
|
11715
|
+
.rounded-es-none {
|
|
11716
|
+
border-end-start-radius: 0px;
|
|
11717
|
+
}
|
|
11718
|
+
.rounded-es-sm {
|
|
11719
|
+
border-end-start-radius: 0.125rem;
|
|
11720
|
+
}
|
|
11721
|
+
.rounded-es-xl {
|
|
11722
|
+
border-end-start-radius: 0.75rem;
|
|
11723
|
+
}
|
|
11724
|
+
.rounded-se {
|
|
11725
|
+
border-start-end-radius: 0.25rem;
|
|
11726
|
+
}
|
|
11727
|
+
.rounded-se-2xl {
|
|
11728
|
+
border-start-end-radius: 1rem;
|
|
11729
|
+
}
|
|
11730
|
+
.rounded-se-3xl {
|
|
11731
|
+
border-start-end-radius: 1.5rem;
|
|
11732
|
+
}
|
|
11733
|
+
.rounded-se-full {
|
|
11734
|
+
border-start-end-radius: 9999px;
|
|
11735
|
+
}
|
|
11736
|
+
.rounded-se-lg {
|
|
11737
|
+
border-start-end-radius: 0.5rem;
|
|
11738
|
+
}
|
|
11739
|
+
.rounded-se-md {
|
|
11740
|
+
border-start-end-radius: 0.375rem;
|
|
11741
|
+
}
|
|
11742
|
+
.rounded-se-none {
|
|
11743
|
+
border-start-end-radius: 0px;
|
|
11744
|
+
}
|
|
11745
|
+
.rounded-se-sm {
|
|
11746
|
+
border-start-end-radius: 0.125rem;
|
|
11747
|
+
}
|
|
11748
|
+
.rounded-se-xl {
|
|
11749
|
+
border-start-end-radius: 0.75rem;
|
|
11750
|
+
}
|
|
11751
|
+
.rounded-ss {
|
|
11752
|
+
border-start-start-radius: 0.25rem;
|
|
11753
|
+
}
|
|
11754
|
+
.rounded-ss-2xl {
|
|
11755
|
+
border-start-start-radius: 1rem;
|
|
11756
|
+
}
|
|
11757
|
+
.rounded-ss-3xl {
|
|
11758
|
+
border-start-start-radius: 1.5rem;
|
|
11759
|
+
}
|
|
11760
|
+
.rounded-ss-full {
|
|
11761
|
+
border-start-start-radius: 9999px;
|
|
11762
|
+
}
|
|
11763
|
+
.rounded-ss-lg {
|
|
11764
|
+
border-start-start-radius: 0.5rem;
|
|
11765
|
+
}
|
|
11766
|
+
.rounded-ss-md {
|
|
11767
|
+
border-start-start-radius: 0.375rem;
|
|
11768
|
+
}
|
|
11769
|
+
.rounded-ss-none {
|
|
11770
|
+
border-start-start-radius: 0px;
|
|
11771
|
+
}
|
|
11772
|
+
.rounded-ss-sm {
|
|
11773
|
+
border-start-start-radius: 0.125rem;
|
|
11774
|
+
}
|
|
11775
|
+
.rounded-ss-xl {
|
|
11776
|
+
border-start-start-radius: 0.75rem;
|
|
11777
|
+
}
|
|
11778
|
+
.rounded-tl {
|
|
11779
|
+
border-top-left-radius: 0.25rem;
|
|
11780
|
+
}
|
|
11781
|
+
.rounded-tl-2xl {
|
|
11782
|
+
border-top-left-radius: 1rem;
|
|
11783
|
+
}
|
|
11784
|
+
.rounded-tl-3xl {
|
|
11785
|
+
border-top-left-radius: 1.5rem;
|
|
11786
|
+
}
|
|
11787
|
+
.rounded-tl-full {
|
|
11788
|
+
border-top-left-radius: 9999px;
|
|
11789
|
+
}
|
|
11790
|
+
.rounded-tl-lg {
|
|
11791
|
+
border-top-left-radius: 0.5rem;
|
|
11792
|
+
}
|
|
11793
|
+
.rounded-tl-md {
|
|
11794
|
+
border-top-left-radius: 0.375rem;
|
|
11795
|
+
}
|
|
11796
|
+
.rounded-tl-none {
|
|
11797
|
+
border-top-left-radius: 0px;
|
|
11798
|
+
}
|
|
11799
|
+
.rounded-tl-sm {
|
|
11800
|
+
border-top-left-radius: 0.125rem;
|
|
11801
|
+
}
|
|
11802
|
+
.rounded-tl-xl {
|
|
11803
|
+
border-top-left-radius: 0.75rem;
|
|
11804
|
+
}
|
|
11805
|
+
.rounded-tr {
|
|
11806
|
+
border-top-right-radius: 0.25rem;
|
|
11807
|
+
}
|
|
11808
|
+
.rounded-tr-2xl {
|
|
11809
|
+
border-top-right-radius: 1rem;
|
|
11810
|
+
}
|
|
11811
|
+
.rounded-tr-3xl {
|
|
11812
|
+
border-top-right-radius: 1.5rem;
|
|
11813
|
+
}
|
|
11814
|
+
.rounded-tr-full {
|
|
11815
|
+
border-top-right-radius: 9999px;
|
|
11816
|
+
}
|
|
11817
|
+
.rounded-tr-lg {
|
|
11818
|
+
border-top-right-radius: 0.5rem;
|
|
11819
|
+
}
|
|
11820
|
+
.rounded-tr-md {
|
|
11821
|
+
border-top-right-radius: 0.375rem;
|
|
11822
|
+
}
|
|
11823
|
+
.rounded-tr-none {
|
|
11824
|
+
border-top-right-radius: 0px;
|
|
11825
|
+
}
|
|
11826
|
+
.rounded-tr-sm {
|
|
11827
|
+
border-top-right-radius: 0.125rem;
|
|
11828
|
+
}
|
|
11829
|
+
.rounded-tr-xl {
|
|
11830
|
+
border-top-right-radius: 0.75rem;
|
|
11831
|
+
}
|
|
11379
11832
|
.border {
|
|
11380
11833
|
border-width: 1px;
|
|
11381
11834
|
}
|
package/package.json
CHANGED