fix(ui): login theme error in dark mode

This commit is contained in:
Fu Diwei 2025-03-25 20:31:02 +08:00
parent fa63f2a838
commit 0a90523d61

View File

@ -1,4 +1,5 @@
import { Navigate, Outlet } from "react-router-dom";
import { Layout } from "antd";
import Version from "@/components/Version";
import { getAuthStore } from "@/repository/admin";
@ -10,11 +11,13 @@ const AuthLayout = () => {
}
return (
<Layout className="h-screen">
<div className="container">
<Outlet />
<Version className="fixed bottom-4 right-8" />
</div>
</Layout>
);
};