@sikka/hawa 0.1.28 → 0.1.30
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/styles.css +14 -0
- package/es/index.es.js +2 -2
- package/lib/index.js +2 -2
- package/package.json +1 -1
- package/src/elements/HawaRadio.tsx +17 -1
- package/src/elements/Tabs.tsx +1 -1
- package/src/styles.css +14 -0
- package/src/translations/ar.json +6 -1
- package/src/translations/en.json +6 -1
package/dist/styles.css
CHANGED
|
@@ -887,6 +887,9 @@ video {
|
|
|
887
887
|
.mb-5 {
|
|
888
888
|
margin-bottom: 1.25rem;
|
|
889
889
|
}
|
|
890
|
+
.mb-6 {
|
|
891
|
+
margin-bottom: 1.5rem;
|
|
892
|
+
}
|
|
890
893
|
.ml-0 {
|
|
891
894
|
margin-left: 0px;
|
|
892
895
|
}
|
|
@@ -959,6 +962,9 @@ video {
|
|
|
959
962
|
.mt-1\.5 {
|
|
960
963
|
margin-top: 0.375rem;
|
|
961
964
|
}
|
|
965
|
+
.mt-10 {
|
|
966
|
+
margin-top: 2.5rem;
|
|
967
|
+
}
|
|
962
968
|
.mt-14 {
|
|
963
969
|
margin-top: 3.5rem;
|
|
964
970
|
}
|
|
@@ -2908,6 +2914,10 @@ body {
|
|
|
2908
2914
|
border-top-left-radius: var(--radius);
|
|
2909
2915
|
border-bottom-left-radius: var(--radius);
|
|
2910
2916
|
}
|
|
2917
|
+
.first\:rounded-r:first-child {
|
|
2918
|
+
border-top-right-radius: var(--radius);
|
|
2919
|
+
border-bottom-right-radius: var(--radius);
|
|
2920
|
+
}
|
|
2911
2921
|
.first\:rounded-t:first-child {
|
|
2912
2922
|
border-top-left-radius: var(--radius);
|
|
2913
2923
|
border-top-right-radius: var(--radius);
|
|
@@ -2916,6 +2926,10 @@ body {
|
|
|
2916
2926
|
border-bottom-right-radius: var(--radius);
|
|
2917
2927
|
border-bottom-left-radius: var(--radius);
|
|
2918
2928
|
}
|
|
2929
|
+
.last\:rounded-l:last-child {
|
|
2930
|
+
border-top-left-radius: var(--radius);
|
|
2931
|
+
border-bottom-left-radius: var(--radius);
|
|
2932
|
+
}
|
|
2919
2933
|
.last\:rounded-r:last-child {
|
|
2920
2934
|
border-top-right-radius: var(--radius);
|
|
2921
2935
|
border-bottom-right-radius: var(--radius);
|