@loafmarkets/ui 0.1.354 → 0.1.355
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/index.js +27 -15
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +27 -15
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6820,8 +6820,12 @@ var LoginPopup = ({
|
|
|
6820
6820
|
/* @__PURE__ */ jsxRuntime.jsx(CloseButton, { onClick: onClose, "aria-label": "Close login popup", children: /* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z" }) }) }),
|
|
6821
6821
|
/* @__PURE__ */ jsxRuntime.jsxs(Title, { children: [
|
|
6822
6822
|
/* @__PURE__ */ jsxRuntime.jsx(LogoContainer3, { children: /* @__PURE__ */ jsxRuntime.jsx(LogoImage, { src: logoSrc, alt: logoAlt }) }),
|
|
6823
|
-
|
|
6823
|
+
/* @__PURE__ */ jsxRuntime.jsxs(TitleText, { children: [
|
|
6824
|
+
"Welcome to Loaf",
|
|
6825
|
+
/* @__PURE__ */ jsxRuntime.jsx(BetaBadge, { children: "(Private Beta)" })
|
|
6826
|
+
] })
|
|
6824
6827
|
] }),
|
|
6828
|
+
/* @__PURE__ */ jsxRuntime.jsx(Subtitle, { children: "Sign in to claim $100k in test USD." }),
|
|
6825
6829
|
/* @__PURE__ */ jsxRuntime.jsxs(ButtonsContainer, { children: [
|
|
6826
6830
|
/* @__PURE__ */ jsxRuntime.jsxs(LoginButton, { onClick: () => handleEmailClick(false), children: [
|
|
6827
6831
|
/* @__PURE__ */ jsxRuntime.jsx("svg", { xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z" }) }),
|
|
@@ -6837,19 +6841,6 @@ var LoginPopup = ({
|
|
|
6837
6841
|
"Sign in with Passkey"
|
|
6838
6842
|
] })
|
|
6839
6843
|
] }),
|
|
6840
|
-
/* @__PURE__ */ jsxRuntime.jsx("div", { style: { textAlign: "center", marginTop: "0.5rem", marginBottom: "1rem" }, children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
6841
|
-
"span",
|
|
6842
|
-
{
|
|
6843
|
-
onClick: () => handleEmailClick(true),
|
|
6844
|
-
style: {
|
|
6845
|
-
color: "var(--color-text-secondary, #848e9c)",
|
|
6846
|
-
fontSize: "0.8rem",
|
|
6847
|
-
cursor: "pointer",
|
|
6848
|
-
textDecoration: "underline"
|
|
6849
|
-
},
|
|
6850
|
-
children: "Sign Up"
|
|
6851
|
-
}
|
|
6852
|
-
) }),
|
|
6853
6844
|
/* @__PURE__ */ jsxRuntime.jsx(Divider, {}),
|
|
6854
6845
|
/* @__PURE__ */ jsxRuntime.jsxs(AnnotationContainer, { children: [
|
|
6855
6846
|
/* @__PURE__ */ jsxRuntime.jsxs(Annotation, { children: [
|
|
@@ -7516,7 +7507,7 @@ var Title = styled9__default.default.h2`
|
|
|
7516
7507
|
font-size: 1.75rem;
|
|
7517
7508
|
font-weight: 600;
|
|
7518
7509
|
color: var(--color-text, #eaecef);
|
|
7519
|
-
margin-bottom:
|
|
7510
|
+
margin-bottom: 0.5rem;
|
|
7520
7511
|
text-align: center;
|
|
7521
7512
|
display: flex;
|
|
7522
7513
|
flex-direction: column;
|
|
@@ -7524,6 +7515,27 @@ var Title = styled9__default.default.h2`
|
|
|
7524
7515
|
justify-content: center;
|
|
7525
7516
|
gap: 1rem;
|
|
7526
7517
|
`;
|
|
7518
|
+
var TitleText = styled9__default.default.span`
|
|
7519
|
+
display: flex;
|
|
7520
|
+
flex-direction: column;
|
|
7521
|
+
align-items: center;
|
|
7522
|
+
gap: 0.35rem;
|
|
7523
|
+
text-align: center;
|
|
7524
|
+
line-height: 1.2;
|
|
7525
|
+
`;
|
|
7526
|
+
var BetaBadge = styled9__default.default.span`
|
|
7527
|
+
font-size: 0.875rem;
|
|
7528
|
+
font-weight: 500;
|
|
7529
|
+
color: var(--color-accent, #e6c87e);
|
|
7530
|
+
white-space: nowrap;
|
|
7531
|
+
`;
|
|
7532
|
+
var Subtitle = styled9__default.default.p`
|
|
7533
|
+
font-size: 0.9rem;
|
|
7534
|
+
font-weight: 400;
|
|
7535
|
+
color: var(--color-text-secondary, #848e9c);
|
|
7536
|
+
text-align: center;
|
|
7537
|
+
margin: 0 0 2rem;
|
|
7538
|
+
`;
|
|
7527
7539
|
var LogoContainer3 = styled9__default.default.div`
|
|
7528
7540
|
display: flex;
|
|
7529
7541
|
justify-content: center;
|