26 lines
537 B
React
26 lines
537 B
React
|
import "./globals.css";
|
||
|
|
||
|
export const viewport = {
|
||
|
width: "device-width",
|
||
|
initialScale: 1,
|
||
|
maximumScale: 1,
|
||
|
userScalable: 0,
|
||
|
};
|
||
|
|
||
|
export default function RootLayout({ children }) {
|
||
|
return (
|
||
|
<html
|
||
|
lang="zh-CN"
|
||
|
className="bg-[#07050A]"
|
||
|
data-prefers-color-scheme="dark"
|
||
|
>
|
||
|
<body
|
||
|
className="box-border min-h-screen flex flex-col"
|
||
|
style={{ "--adm-color-primary": "#FF669E" }}
|
||
|
>
|
||
|
<div className="flex flex-1 justify-center">{children}</div>
|
||
|
</body>
|
||
|
</html>
|
||
|
);
|
||
|
}
|