diff --git a/ui/components/auth/oss/auth-card.tsx b/ui/components/auth/oss/auth-card.tsx index 19c4bf7f7c..1d2ef61895 100644 --- a/ui/components/auth/oss/auth-card.tsx +++ b/ui/components/auth/oss/auth-card.tsx @@ -8,7 +8,7 @@ interface AuthCardProps { } const CARD_BASE = - "rounded-large border-divider shadow-small dark:bg-background/80 relative flex w-full flex-col border bg-white/85 backdrop-blur-xl"; + "relative isolate flex w-full flex-col overflow-hidden rounded-3xl border border-black/8 bg-gradient-to-br from-white/78 via-white/70 to-white/58 shadow-2xl shadow-slate-300/35 ring-1 ring-white/55 backdrop-blur-2xl before:pointer-events-none before:absolute before:inset-0 before:bg-gradient-to-br before:from-white/55 before:via-white/10 before:to-transparent before:content-[''] after:pointer-events-none after:absolute after:-top-16 after:right-10 after:h-36 after:w-36 after:rounded-full after:bg-emerald-400/8 after:blur-3xl after:content-[''] dark:border-white/10 dark:from-black/72 dark:via-black/64 dark:to-black/56 dark:shadow-black/45 dark:ring-white/6 dark:before:from-white/8 dark:before:via-transparent"; export const AuthCard = ({ className, children }: AuthCardProps) => (
{children}
diff --git a/ui/components/auth/oss/auth-layout.tsx b/ui/components/auth/oss/auth-layout.tsx index 202d891d8a..5b8df39c79 100644 --- a/ui/components/auth/oss/auth-layout.tsx +++ b/ui/components/auth/oss/auth-layout.tsx @@ -15,17 +15,14 @@ export const AuthLayout = ({ title, children }: AuthLayoutProps) => (
-
-
+
+
- +
- +

{title}

@@ -34,9 +31,9 @@ export const AuthLayout = ({ title, children }: AuthLayoutProps) => ( {children}
-
- + +
); diff --git a/ui/components/auth/oss/auth-release-highlights.tsx b/ui/components/auth/oss/auth-release-highlights.tsx index 3f48f8c1ba..eaf3ff14aa 100644 --- a/ui/components/auth/oss/auth-release-highlights.tsx +++ b/ui/components/auth/oss/auth-release-highlights.tsx @@ -1,6 +1,5 @@ import { Icon } from "@iconify/react"; -import { AuthCard } from "@/components/auth/oss/auth-card"; import { ProwlerShort } from "@/components/icons"; import { Button } from "@/components/shadcn"; @@ -19,57 +18,78 @@ const HIGHLIGHTS: readonly string[] = [ export const AuthReleaseHighlights = () => ( );