@sikka/hawa 0.0.127 → 0.0.129
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 +4 -3
- package/es/index.es.js +1 -1
- package/lib/index.js +1 -1
- package/package.json +1 -1
- package/src/layout/HawaAppLayout.tsx +11 -3
- package/src/styles.css +4 -3
package/package.json
CHANGED
|
@@ -18,7 +18,7 @@ export const HawaAppLayout: React.FunctionComponent<HawaAppLayoutTypes> = (
|
|
|
18
18
|
<div
|
|
19
19
|
onMouseEnter={() => setOpenSideMenu(true)}
|
|
20
20
|
onMouseLeave={() => setOpenSideMenu(false)}
|
|
21
|
-
className="
|
|
21
|
+
className="fixed top-0 left-0 z-50 flex h-full w-12 flex-col bg-blue-300 transition-all hover:w-40"
|
|
22
22
|
>
|
|
23
23
|
<div className="flex flex-row p-2">
|
|
24
24
|
{/* full logo */}
|
|
@@ -57,10 +57,18 @@ export const HawaAppLayout: React.FunctionComponent<HawaAppLayoutTypes> = (
|
|
|
57
57
|
</div>
|
|
58
58
|
))}
|
|
59
59
|
</div>
|
|
60
|
-
<div
|
|
61
|
-
|
|
60
|
+
<div
|
|
61
|
+
className={clsx(
|
|
62
|
+
// "overflow-scroll",
|
|
63
|
+
"w-[calc(100%-3rem)]",
|
|
64
|
+
"translate-x-[3rem]",
|
|
65
|
+
"bg-red-900 text-white",
|
|
66
|
+
"m-0"
|
|
67
|
+
)}
|
|
68
|
+
>
|
|
62
69
|
{props.children}
|
|
63
70
|
</div>
|
|
71
|
+
{/* <div className="top-0 w-[calc(100%-1rem)] -translate-y-[1rem] translate-x-8 overflow-scroll bg-yellow-300 "> */}
|
|
64
72
|
</>
|
|
65
73
|
)
|
|
66
74
|
}
|
package/src/styles.css
CHANGED
|
@@ -991,9 +991,6 @@ video {
|
|
|
991
991
|
.gap-1 {
|
|
992
992
|
gap: 0.25rem;
|
|
993
993
|
}
|
|
994
|
-
.gap-0 {
|
|
995
|
-
gap: 0px;
|
|
996
|
-
}
|
|
997
994
|
.gap-x-3 {
|
|
998
995
|
-moz-column-gap: 0.75rem;
|
|
999
996
|
column-gap: 0.75rem;
|
|
@@ -1354,6 +1351,10 @@ video {
|
|
|
1354
1351
|
--tw-bg-opacity: 1;
|
|
1355
1352
|
background-color: rgb(6 92 198 / var(--tw-bg-opacity));
|
|
1356
1353
|
}
|
|
1354
|
+
.bg-red-900 {
|
|
1355
|
+
--tw-bg-opacity: 1;
|
|
1356
|
+
background-color: rgb(127 29 29 / var(--tw-bg-opacity));
|
|
1357
|
+
}
|
|
1357
1358
|
.bg-yellow-300 {
|
|
1358
1359
|
--tw-bg-opacity: 1;
|
|
1359
1360
|
background-color: rgb(253 224 71 / var(--tw-bg-opacity));
|