@greatapps/common 1.1.113 → 1.1.114
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
|
@@ -63,27 +63,27 @@ export function AppMobileNavBar({
|
|
|
63
63
|
<TooltipTrigger asChild>
|
|
64
64
|
{isGpagesActive ? (
|
|
65
65
|
<div
|
|
66
|
-
className="size-10 rounded-
|
|
66
|
+
className="size-10 rounded-xl cursor-pointer p-[2px]"
|
|
67
67
|
style={{
|
|
68
|
-
border: "
|
|
69
|
-
background: "
|
|
70
|
-
boxShadow:
|
|
68
|
+
border: "1.5px solid rgba(153,234,255,0.75)",
|
|
69
|
+
background: "white",
|
|
70
|
+
boxShadow:
|
|
71
|
+
"0 0 8px rgba(153,234,255,0.5), 0 0 18px rgba(153,234,255,0.2)",
|
|
71
72
|
}}
|
|
72
73
|
onClick={onAppIconClick}
|
|
73
74
|
>
|
|
74
75
|
<div
|
|
75
|
-
className="w-full h-full rounded-
|
|
76
|
+
className="w-full h-full rounded-lg flex items-center justify-center"
|
|
76
77
|
style={{
|
|
77
78
|
background:
|
|
78
|
-
"
|
|
79
|
+
"radial-gradient(circle at center, rgba(255,255,255,0.95) 0%, rgba(153,234,255,0.45) 100%)",
|
|
79
80
|
}}
|
|
80
81
|
>
|
|
81
82
|
<Image
|
|
82
83
|
src="/icons/icon-navbar.svg"
|
|
83
84
|
alt="GreatPages"
|
|
84
|
-
width={
|
|
85
|
-
height={
|
|
86
|
-
className="drop-shadow-sm"
|
|
85
|
+
width={24}
|
|
86
|
+
height={24}
|
|
87
87
|
/>
|
|
88
88
|
</div>
|
|
89
89
|
</div>
|
|
@@ -104,7 +104,7 @@ export function AppMobileNavBar({
|
|
|
104
104
|
<TooltipContent side="bottom">GreatPages</TooltipContent>
|
|
105
105
|
</Tooltip>
|
|
106
106
|
{isGpagesActive && (
|
|
107
|
-
<div className="absolute bottom-[
|
|
107
|
+
<div className="absolute -bottom-[17px] left-1/2 -translate-x-1/2 w-5 h-[3px] bg-pages-500 rounded-t-xl" />
|
|
108
108
|
)}
|
|
109
109
|
</div>
|
|
110
110
|
{extraLeftSlot}
|