@tattvafoundation/upyog-css 1.0.32 → 1.0.35
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.css +47 -7
- package/dist/index.min.css +1 -1
- package/package.json +1 -1
- package/src/components/textfields.scss +1 -1
package/dist/index.css
CHANGED
|
@@ -298,6 +298,17 @@ img, video {
|
|
|
298
298
|
border-top-width: calc(1px*(1 - var(--divide-y-reverse)));
|
|
299
299
|
border-bottom-width: calc(1px*var(--divide-y-reverse)); }
|
|
300
300
|
|
|
301
|
+
.sr-only {
|
|
302
|
+
position: absolute;
|
|
303
|
+
width: 1px;
|
|
304
|
+
height: 1px;
|
|
305
|
+
padding: 0;
|
|
306
|
+
margin: -1px;
|
|
307
|
+
overflow: hidden;
|
|
308
|
+
clip: rect(0, 0, 0, 0);
|
|
309
|
+
white-space: nowrap;
|
|
310
|
+
border-width: 0; }
|
|
311
|
+
|
|
301
312
|
.appearance-none {
|
|
302
313
|
-webkit-appearance: none;
|
|
303
314
|
-moz-appearance: none;
|
|
@@ -428,6 +439,11 @@ img, video {
|
|
|
428
439
|
background-color: #fdf9ed;
|
|
429
440
|
background-color: rgba(253, 249, 237, var(--bg-opacity)); }
|
|
430
441
|
|
|
442
|
+
.focus\:bg-white:focus {
|
|
443
|
+
--bg-opacity:1;
|
|
444
|
+
background-color: #fff;
|
|
445
|
+
background-color: rgba(255, 255, 255, var(--bg-opacity)); }
|
|
446
|
+
|
|
431
447
|
.bg-gradient-to-r {
|
|
432
448
|
background-image: -webkit-gradient(linear, left top, right top, from(var(--gradient-color-stops)));
|
|
433
449
|
background-image: linear-gradient(90deg, var(--gradient-color-stops)); }
|
|
@@ -584,6 +600,10 @@ img, video {
|
|
|
584
600
|
border-top-left-radius: .75rem;
|
|
585
601
|
border-top-right-radius: .75rem; }
|
|
586
602
|
|
|
603
|
+
.rounded-t-2xl {
|
|
604
|
+
border-top-left-radius: 1rem;
|
|
605
|
+
border-top-right-radius: 1rem; }
|
|
606
|
+
|
|
587
607
|
.border-dashed {
|
|
588
608
|
border-style: dashed; }
|
|
589
609
|
|
|
@@ -608,6 +628,9 @@ img, video {
|
|
|
608
628
|
.border-b-0 {
|
|
609
629
|
border-bottom-width: 0; }
|
|
610
630
|
|
|
631
|
+
.border-t-2 {
|
|
632
|
+
border-top-width: 1px; }
|
|
633
|
+
|
|
611
634
|
.border-b-2 {
|
|
612
635
|
border-bottom-width: 1px; }
|
|
613
636
|
|
|
@@ -623,6 +646,9 @@ img, video {
|
|
|
623
646
|
.border-t {
|
|
624
647
|
border-top-width: 1px; }
|
|
625
648
|
|
|
649
|
+
.border-r {
|
|
650
|
+
border-right-width: 1px; }
|
|
651
|
+
|
|
626
652
|
.border-b {
|
|
627
653
|
border-bottom-width: 1px; }
|
|
628
654
|
|
|
@@ -657,12 +683,6 @@ img, video {
|
|
|
657
683
|
.table {
|
|
658
684
|
display: table; }
|
|
659
685
|
|
|
660
|
-
.table-cell {
|
|
661
|
-
display: table-cell; }
|
|
662
|
-
|
|
663
|
-
.table-row {
|
|
664
|
-
display: table-row; }
|
|
665
|
-
|
|
666
686
|
.grid {
|
|
667
687
|
display: grid; }
|
|
668
688
|
|
|
@@ -816,6 +836,9 @@ img, video {
|
|
|
816
836
|
.h-32 {
|
|
817
837
|
height: 8rem; }
|
|
818
838
|
|
|
839
|
+
.h-48 {
|
|
840
|
+
height: 12rem; }
|
|
841
|
+
|
|
819
842
|
.h-64 {
|
|
820
843
|
height: 16rem; }
|
|
821
844
|
|
|
@@ -922,6 +945,9 @@ img, video {
|
|
|
922
945
|
.max-w-7xl {
|
|
923
946
|
max-width: 80rem; }
|
|
924
947
|
|
|
948
|
+
.min-h-0 {
|
|
949
|
+
min-height: 0; }
|
|
950
|
+
|
|
925
951
|
.min-h-screen {
|
|
926
952
|
min-height: 100vh; }
|
|
927
953
|
|
|
@@ -1132,6 +1158,11 @@ img, video {
|
|
|
1132
1158
|
color: #6d6d6d;
|
|
1133
1159
|
color: rgba(109, 109, 109, var(--text-opacity)); }
|
|
1134
1160
|
|
|
1161
|
+
.text-black {
|
|
1162
|
+
--text-opacity:1;
|
|
1163
|
+
color: #000;
|
|
1164
|
+
color: rgba(0, 0, 0, var(--text-opacity)); }
|
|
1165
|
+
|
|
1135
1166
|
.text-white {
|
|
1136
1167
|
--text-opacity:1;
|
|
1137
1168
|
color: #fff;
|
|
@@ -1208,6 +1239,12 @@ img, video {
|
|
|
1208
1239
|
font-variant-numeric: var(--font-variant-numeric-ordinal) var(--font-variant-numeric-slashed-zero) var(--font-variant-numeric-figure) var(--font-variant-numeric-spacing) var(--font-variant-numeric-fraction);
|
|
1209
1240
|
--font-variant-numeric-spacing:proportional-nums; }
|
|
1210
1241
|
|
|
1242
|
+
.tracking-tighter {
|
|
1243
|
+
letter-spacing: -.05em; }
|
|
1244
|
+
|
|
1245
|
+
.tracking-tight {
|
|
1246
|
+
letter-spacing: -.025em; }
|
|
1247
|
+
|
|
1211
1248
|
.tracking-wide {
|
|
1212
1249
|
letter-spacing: .025em; }
|
|
1213
1250
|
|
|
@@ -1454,6 +1491,9 @@ img, video {
|
|
|
1454
1491
|
.rotate-0 {
|
|
1455
1492
|
--transform-rotate:0; }
|
|
1456
1493
|
|
|
1494
|
+
.rotate-90 {
|
|
1495
|
+
--transform-rotate:90deg; }
|
|
1496
|
+
|
|
1457
1497
|
.rotate-180 {
|
|
1458
1498
|
--transform-rotate:180deg; }
|
|
1459
1499
|
|
|
@@ -3552,7 +3592,7 @@ body {
|
|
|
3552
3592
|
--text-opacity:1;
|
|
3553
3593
|
color: #0b0c0c;
|
|
3554
3594
|
color: rgba(11, 12, 12, var(--text-opacity));
|
|
3555
|
-
margin-bottom:
|
|
3595
|
+
margin-bottom: 4px !important;
|
|
3556
3596
|
height: 2rem !important; }
|
|
3557
3597
|
|
|
3558
3598
|
.employee-card-input:disabled {
|