@sikka/hawa 0.0.149 → 0.0.150

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sikka/hawa",
3
- "version": "0.0.149",
3
+ "version": "0.0.150",
4
4
  "description": "UI Kit",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.es.js",
@@ -241,7 +241,9 @@ export const HawaAppLayout: React.FunctionComponent<HawaAppLayoutTypes> = (
241
241
  props.topBar ? "top-14" : "top-0",
242
242
  // props.topBar ? "mt-[3.6rem]" : "mt-0",
243
243
  // keepOpen ? "w-[calc(100%-10rem)] translate-x-[10.54rem]" : ""
244
- keepOpen ? "left-40" : "left-0"
244
+ keepOpen
245
+ ? "left-40 w-[calc(100%-10rem)]"
246
+ : "left-0 w-[calc(100%-3.5rem)]"
245
247
  )}
246
248
  // className={"layoutBody_open"}
247
249
  >
package/src/styles.css CHANGED
@@ -878,6 +878,9 @@ video {
878
878
  .w-\[calc\(100\%-10rem\)\] {
879
879
  width: calc(100% - 10rem);
880
880
  }
881
+ .w-\[calc\(100\%-3\.5rem\)\] {
882
+ width: calc(100% - 3.5rem);
883
+ }
881
884
  .w-\[calc\(100\%-1rem\)\] {
882
885
  width: calc(100% - 1rem);
883
886
  }