modified styles
This commit is contained in:
+7
-5
@@ -1,14 +1,16 @@
|
||||
import Header from "../components/header";
|
||||
|
||||
|
||||
|
||||
export default function RootLayout({ children }: { children: React.ReactNode }) {
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
return (
|
||||
<html lang="es">
|
||||
<body>
|
||||
<Header />
|
||||
{children}
|
||||
{children}
|
||||
</body>
|
||||
</html>
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import Login from "@/components/Login";
|
||||
import "../app/styles/base/_globales.scss";
|
||||
|
||||
export default function page() {
|
||||
return <Login />;
|
||||
|
||||
@@ -12,7 +12,7 @@ html {
|
||||
box-sizing: inherit;
|
||||
}
|
||||
body {
|
||||
|
||||
background-color: #f5f5f7;
|
||||
font-optical-sizing: auto;
|
||||
font-style: normal;
|
||||
|
||||
|
||||
@@ -34,6 +34,7 @@
|
||||
z-index: 0;
|
||||
}
|
||||
.header {
|
||||
background-color: #fff;
|
||||
display: grid;
|
||||
grid-template-columns: auto 1fr;
|
||||
padding: 0 40px;
|
||||
|
||||
Reference in New Issue
Block a user