@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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@greatapps/common",
3
- "version": "1.1.113",
3
+ "version": "1.1.114",
4
4
  "description": "Shared library for GreatApps frontend applications",
5
5
  "main": "./dist/index.mjs",
6
6
  "types": "./src/index.ts",
@@ -63,27 +63,27 @@ export function AppMobileNavBar({
63
63
  <TooltipTrigger asChild>
64
64
  {isGpagesActive ? (
65
65
  <div
66
- className="size-10 rounded-[10px] cursor-pointer p-[3px]"
66
+ className="size-10 rounded-xl cursor-pointer p-[2px]"
67
67
  style={{
68
- border: "2px solid #A1F1FF",
69
- background: "#FFFFFF",
70
- boxShadow: "0 0 10px rgba(161, 241, 255, 0.4)",
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-[6px] flex items-center justify-center"
76
+ className="w-full h-full rounded-lg flex items-center justify-center"
76
77
  style={{
77
78
  background:
78
- "linear-gradient(180deg, #E0FAFF 0%, #B9F6FF 100%)",
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={22}
85
- height={22}
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-[-17px] left-1/2 -translate-x-1/2 w-5 h-[3px] bg-pages-500 rounded-t-xl" />
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}