modified styles

This commit is contained in:
2025-10-23 15:43:58 -06:00
parent f633c21708
commit dcf0165ebc
4 changed files with 10 additions and 6 deletions
+7 -5
View File
@@ -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
View File
@@ -1,4 +1,5 @@
import Login from "@/components/Login";
import "../app/styles/base/_globales.scss";
export default function page() {
return <Login />;
+1 -1
View File
@@ -12,7 +12,7 @@ html {
box-sizing: inherit;
}
body {
background-color: #f5f5f7;
font-optical-sizing: auto;
font-style: normal;
+1
View File
@@ -34,6 +34,7 @@
z-index: 0;
}
.header {
background-color: #fff;
display: grid;
grid-template-columns: auto 1fr;
padding: 0 40px;