@6thbridge/hexa 0.0.15 → 0.0.17
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/.turbo/turbo-lint.log +1 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/output.css +24 -0
- package/package.json +1 -1
package/dist/output.css
CHANGED
@@ -679,6 +679,10 @@ video {
|
|
679
679
|
margin-top: 0.5rem;
|
680
680
|
}
|
681
681
|
|
682
|
+
.mt-3{
|
683
|
+
margin-top: 0.75rem;
|
684
|
+
}
|
685
|
+
|
682
686
|
.mt-5{
|
683
687
|
margin-top: 1.25rem;
|
684
688
|
}
|
@@ -917,6 +921,16 @@ video {
|
|
917
921
|
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
918
922
|
}
|
919
923
|
|
924
|
+
@keyframes pulse{
|
925
|
+
50%{
|
926
|
+
opacity: .5;
|
927
|
+
}
|
928
|
+
}
|
929
|
+
|
930
|
+
.animate-pulse{
|
931
|
+
animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
|
932
|
+
}
|
933
|
+
|
920
934
|
@keyframes spin{
|
921
935
|
to{
|
922
936
|
transform: rotate(360deg);
|
@@ -1394,6 +1408,11 @@ video {
|
|
1394
1408
|
padding-bottom: 0.375rem;
|
1395
1409
|
}
|
1396
1410
|
|
1411
|
+
.py-10{
|
1412
|
+
padding-top: 2.5rem;
|
1413
|
+
padding-bottom: 2.5rem;
|
1414
|
+
}
|
1415
|
+
|
1397
1416
|
.py-2{
|
1398
1417
|
padding-top: 0.5rem;
|
1399
1418
|
padding-bottom: 0.5rem;
|
@@ -1614,6 +1633,11 @@ video {
|
|
1614
1633
|
color: rgb(107 114 128 / var(--tw-text-opacity, 1));
|
1615
1634
|
}
|
1616
1635
|
|
1636
|
+
.text-gray-600{
|
1637
|
+
--tw-text-opacity: 1;
|
1638
|
+
color: rgb(75 85 99 / var(--tw-text-opacity, 1));
|
1639
|
+
}
|
1640
|
+
|
1617
1641
|
.text-green-500{
|
1618
1642
|
--tw-text-opacity: 1;
|
1619
1643
|
color: rgb(34 197 94 / var(--tw-text-opacity, 1));
|