hey-pharmacist-ecommerce 1.1.37 → 1.1.38
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/README.md +0 -2
- package/dist/index.d.mts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/types/index.ts +0 -1
- package/src/screens/LoginScreen.tsx +2 -2
package/dist/index.mjs
CHANGED
|
@@ -17145,9 +17145,9 @@ function LoginScreen() {
|
|
|
17145
17145
|
status && /* @__PURE__ */ jsxs(
|
|
17146
17146
|
"div",
|
|
17147
17147
|
{
|
|
17148
|
-
className: `flex items-start gap-2 rounded-2xl border px-4 py-3 text-sm ${status.type === "success" ? "border-green-200 bg-green-50 text-green-800" : "border-red-200 bg-red-50 text-red-700"}`,
|
|
17148
|
+
className: `flex flex-row items-start gap-2 rounded-2xl border px-4 py-3 text-sm ${status.type === "success" ? "border-green-200 bg-green-50 text-green-800" : "border-red-200 bg-red-50 text-red-700"}`,
|
|
17149
17149
|
children: [
|
|
17150
|
-
/* @__PURE__ */ jsx("span", { className: "
|
|
17150
|
+
/* @__PURE__ */ jsx("span", { className: " text-base", children: status.type === "success" ? "\u2714" : "!" }),
|
|
17151
17151
|
/* @__PURE__ */ jsx("span", { children: status.message })
|
|
17152
17152
|
]
|
|
17153
17153
|
}
|