From f6ef97ecf56c65068ad6e98046c8215c4171c2a4 Mon Sep 17 00:00:00 2001 From: IO420 <320154041@pcpuma.acatlan.unam.mx> Date: Tue, 23 Sep 2025 18:36:21 -0600 Subject: [PATCH] modified styles --- app/Components/ActivosMantenimiento/Areas.tsx | 3 +-- app/globals.css | 12 ++++++------ middleware.ts | 19 +------------------ 3 files changed, 8 insertions(+), 26 deletions(-) diff --git a/app/Components/ActivosMantenimiento/Areas.tsx b/app/Components/ActivosMantenimiento/Areas.tsx index 611a036..d5d0da0 100644 --- a/app/Components/ActivosMantenimiento/Areas.tsx +++ b/app/Components/ActivosMantenimiento/Areas.tsx @@ -1,7 +1,7 @@ "use client"; import { useState } from "react"; -function Areas() { +export default function Areas() { const [tiempo, setTiempo] = useState(""); const handleSubmit = (e: React.FormEvent) => { @@ -40,4 +40,3 @@ function Areas() { ); } -export default Areas; diff --git a/app/globals.css b/app/globals.css index e496ac0..3d302aa 100644 --- a/app/globals.css +++ b/app/globals.css @@ -253,7 +253,7 @@ a { top: 0; left: 0; width: 100%; - font-size: 3rem; + font-size: 2.5rem; font-weight: bold; text-align: start; border-bottom: 1px solid #cfcfcf; @@ -387,7 +387,7 @@ table tr { width: 100%; } -@media(max-width: 1330px) { +@media (max-width: 1330px) { .mainContainer { grid-template-rows: 60px 1fr; } @@ -476,9 +476,9 @@ table tr { } button { - font-size: 1.5rem; - padding: 1rem 1.5rem; -} + font-size: 1.5rem; + padding: 1rem 1.5rem; + } } @media (max-height: 960px) { @@ -492,4 +492,4 @@ table tr { max-width: 300px; overflow-wrap: break-word; } -} \ No newline at end of file +} diff --git a/middleware.ts b/middleware.ts index 0f47ec8..f068a83 100644 --- a/middleware.ts +++ b/middleware.ts @@ -13,23 +13,6 @@ export function middleware(request: NextRequest) { } export const config = { - matcher: [ - "/Reportes", - "/Monitor", - "/QuitarSancion", - "/Programas", - "/Mensajes", - "/Inscritos", - "/Inscripciones", - "/InformacionEquipo", - "/Impresiones", - "/CambiarPass", - "/BitacoraSanciones", - "/AsignacionMesas", - "/AsignacionEquipo", - "/Alta", - "/AgregarTiempo", - "/ActivosMantenimiento", - ], + matcher: [], }; //IO