fix(web): auth layout logo back to white

The Logo SVG was switched from hardcoded fill="white" to fill="currentColor"
so the dashboard could tint it gray. Auth-layout usages were never updated
and got rendered with the inherited default text color (near-black) on the
dark sky panel. Pass text-white explicitly at both logo sites.
This commit is contained in:
Matthew Meszaros
2026-05-22 16:50:39 +00:00
parent f99229a4dd
commit af6240aea9
+2 -2
View File
@@ -288,7 +288,7 @@ export default function AuthLayout() {
{/* Top — Logo */}
<div className="relative">
<div className="flex items-center gap-4">
<Logo className="w-14" />
<Logo className="w-14 text-white" />
<span style={{ fontFamily: "var(--font-display)" }} className="font-extrabold text-[26px] tracking-tight text-white">Warmbly</span>
</div>
</div>
@@ -352,7 +352,7 @@ export default function AuthLayout() {
<div className="flex-1 flex items-center justify-center px-5 py-12">
<div className="w-full max-w-[440px]">
<div className="lg:hidden flex items-center justify-center gap-2.5 mb-8 animate-fade-in">
<Logo className="w-10" />
<Logo className="w-10 text-white" />
<span style={{ fontFamily: "var(--font-display)" }} className="font-extrabold text-xl tracking-tight text-white">Warmbly</span>
</div>
<Outlet />