Skip to content

Commit

Permalink
Eliminacion de scroll horizontal
Browse files Browse the repository at this point in the history
  • Loading branch information
ddi4z committed Sep 1, 2024
1 parent e732ced commit 6e1dabe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const metadata: Metadata = {
description: "Una aplicación web que se nutre de la API de cursos de la Universidad de los Andes para ayudarte a encontrar tu horario ideal.",
openGraph: {
title: "Mi Horario Uniandes",
description: "Una aplicación web que se nutre de la API de cursos de la Universidad de los Andes para ayudarte a encontrar tu horario ideal.",
description: "Crea tu horario uniandino perfecto.",
url: "https://open-source-uniandes.github.io/Mi-Horario-Uniandes/",
siteName: "Mi Horario Uniandes",
images: [
Expand All @@ -32,7 +32,7 @@ export const metadata: Metadata = {
export default function LayoutPrincipal({children}: {children: React.ReactNode}) {
return (
<html lang="es">
<body className="h-screen w-screen">
<body className="h-full w-full">
{children}
</body>
<GoogleAnalytics gaId="G-73PZCQ3GKB" />
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ function ServicioNotificaciones(){
*/
function Footer() {
return (
<footer className="flex items-center justify-center bg-neutral-800 py-5 text-white w-screen mt-auto">
<footer className="flex items-center justify-center bg-neutral-800 py-5 text-white w-full mt-auto">
<div>
<p className="text-center text-lg">Hecho con 💛 en Uniandes</p>
<Link href="https://github.com/Open-Source-Uniandes/Mi-Horario-Uniandes" className="font-semibold text-yellow-300 hover:text-yellow-500 transition-colors duration-300 ease-in-out">Sé parte de este proyecto aquí</Link>
Expand Down

0 comments on commit 6e1dabe

Please sign in to comment.