@sikka/hawa 0.0.169 → 0.0.170
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/.vscode/settings.json +3 -0
- package/dist/styles.css +3 -3
- package/es/elements/HawaSpinner.d.ts +3 -1
- package/es/elements/HawaTable.d.ts +1 -0
- package/es/index.es.js +1 -1
- package/lib/elements/HawaSpinner.d.ts +3 -1
- package/lib/elements/HawaTable.d.ts +1 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/elements/HawaButton.tsx +1 -1
- package/src/elements/HawaSpinner.tsx +22 -3
- package/src/elements/HawaTable.tsx +9 -5
- package/src/styles.css +3 -3
package/dist/styles.css
CHANGED
|
@@ -880,6 +880,9 @@ video {
|
|
|
880
880
|
.h-4 {
|
|
881
881
|
height: 1rem;
|
|
882
882
|
}
|
|
883
|
+
.h-24 {
|
|
884
|
+
height: 6rem;
|
|
885
|
+
}
|
|
883
886
|
.h-32 {
|
|
884
887
|
height: 8rem;
|
|
885
888
|
}
|
|
@@ -1204,9 +1207,6 @@ video {
|
|
|
1204
1207
|
.overflow-y-clip {
|
|
1205
1208
|
overflow-y: clip;
|
|
1206
1209
|
}
|
|
1207
|
-
.overflow-x-visible {
|
|
1208
|
-
overflow-x: visible;
|
|
1209
|
-
}
|
|
1210
1210
|
.truncate {
|
|
1211
1211
|
overflow: hidden;
|
|
1212
1212
|
text-overflow: ellipsis;
|