@sikka/hawa 0.0.133 → 0.0.134
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/es/index.es.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/layout/HawaAppLayout.tsx +4 -5
- package/storybook-static/669.d0879212.iframe.bundle.js +2 -0
- package/storybook-static/{669.6cf2214b.iframe.bundle.js.LICENSE.txt → 669.d0879212.iframe.bundle.js.LICENSE.txt} +11 -15
- package/storybook-static/{767.7ed51dff3faa8acf55cd.manager.bundle.js → 767.232e4e4c88bb0a2ed02d.manager.bundle.js} +2 -2
- package/storybook-static/{767.7ed51dff3faa8acf55cd.manager.bundle.js.LICENSE.txt → 767.232e4e4c88bb0a2ed02d.manager.bundle.js.LICENSE.txt} +19 -22
- package/storybook-static/iframe.html +1 -1
- package/storybook-static/index.html +1 -1
- package/storybook-static/main.b801e3dc.iframe.bundle.js +1 -0
- package/storybook-static/project.json +1 -1
- package/storybook-static/runtime~main.4a2964ac.iframe.bundle.js +1 -0
- package/storybook-static/669.6cf2214b.iframe.bundle.js +0 -2
- package/storybook-static/745.4b81597c.iframe.bundle.js +0 -1
- package/storybook-static/main.aecb0d69.iframe.bundle.js +0 -1
- package/storybook-static/runtime~main.0d980255.iframe.bundle.js +0 -1
package/package.json
CHANGED
|
@@ -37,9 +37,8 @@ export const HawaAppLayout: React.FunctionComponent<HawaAppLayoutTypes> = (
|
|
|
37
37
|
"fixed top-0 z-40 flex h-14 w-1/2 flex-row items-center justify-between bg-primary-400",
|
|
38
38
|
"w-[calc(100%-3rem)]",
|
|
39
39
|
"translate-x-[3rem]",
|
|
40
|
-
"p-2"
|
|
41
|
-
|
|
42
|
-
'pr-5'
|
|
40
|
+
"p-2",
|
|
41
|
+
"pr-5"
|
|
43
42
|
)}
|
|
44
43
|
>
|
|
45
44
|
{props.pageTitle ? <div>{props.pageTitle}</div> : <div></div>}
|
|
@@ -51,7 +50,7 @@ export const HawaAppLayout: React.FunctionComponent<HawaAppLayoutTypes> = (
|
|
|
51
50
|
handleOpen={onOpen}
|
|
52
51
|
open={isOpen}
|
|
53
52
|
>
|
|
54
|
-
<div className="relative
|
|
53
|
+
<div className="relative h-8 w-8 cursor-pointer overflow-hidden rounded-full bg-gray-100 dark:bg-gray-600">
|
|
55
54
|
<svg
|
|
56
55
|
className="absolute -left-1 h-10 w-10 text-gray-400"
|
|
57
56
|
fill="currentColor"
|
|
@@ -101,7 +100,7 @@ export const HawaAppLayout: React.FunctionComponent<HawaAppLayoutTypes> = (
|
|
|
101
100
|
<div className="flex items-center justify-center">{dItem.icon}</div>
|
|
102
101
|
<div
|
|
103
102
|
className={clsx(
|
|
104
|
-
"mx-2 text-sm transition-all",
|
|
103
|
+
"mx-2 whitespace-nowrap text-sm transition-all",
|
|
105
104
|
openSideMenu ? "opacity-100" : "opacity-0"
|
|
106
105
|
)}
|
|
107
106
|
>
|