@sikka/hawa 0.0.216 → 0.0.217
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 +6 -0
- package/es/elements/HawaSelect.d.ts +1 -0
- package/es/elements/HawaSettingsRow.d.ts +1 -0
- package/es/index.es.js +1 -1
- package/lib/elements/HawaSelect.d.ts +1 -0
- package/lib/elements/HawaSettingsRow.d.ts +1 -0
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/elements/HawaSelect.tsx +3 -1
- package/src/elements/HawaSettingsRow.tsx +5 -1
- package/src/styles.css +6 -0
package/dist/styles.css
CHANGED
|
@@ -872,6 +872,9 @@ video {
|
|
|
872
872
|
.h-\[1px\] {
|
|
873
873
|
height: 1px;
|
|
874
874
|
}
|
|
875
|
+
.h-\[2\.33rem\] {
|
|
876
|
+
height: 2.33rem;
|
|
877
|
+
}
|
|
875
878
|
.h-\[calc\(100\%-3\.5rem\)\] {
|
|
876
879
|
height: calc(100% - 3.5rem);
|
|
877
880
|
}
|
|
@@ -1079,6 +1082,9 @@ video {
|
|
|
1079
1082
|
.grid-cols-2 {
|
|
1080
1083
|
grid-template-columns: repeat(2, minmax(0, 1fr));
|
|
1081
1084
|
}
|
|
1085
|
+
.grid-cols-3 {
|
|
1086
|
+
grid-template-columns: repeat(3, minmax(0, 1fr));
|
|
1087
|
+
}
|
|
1082
1088
|
.grid-cols-4 {
|
|
1083
1089
|
grid-template-columns: repeat(4, minmax(0, 1fr));
|
|
1084
1090
|
}
|