From f2caf2ad8322c802756633586d34d63f6ff13abc Mon Sep 17 00:00:00 2001 From: IO <320154041@pcpuma.acatlan.unam.mx> Date: Thu, 5 Feb 2026 13:26:17 -0600 Subject: [PATCH] fixed style --- app/Components/Equipos/tableequipos.tsx | 2 +- app/Components/Global/table.module.css | 37 +++++++++++++++++++++++++ app/Components/Global/table.tsx | 3 +- app/globals.css | 14 ++++++---- middleware.ts | 3 +- 5 files changed, 50 insertions(+), 9 deletions(-) diff --git a/app/Components/Equipos/tableequipos.tsx b/app/Components/Equipos/tableequipos.tsx index 7cf6c91..7c6461a 100644 --- a/app/Components/Equipos/tableequipos.tsx +++ b/app/Components/Equipos/tableequipos.tsx @@ -57,7 +57,7 @@ export default function TableEquipos() { scrollbarColor: "#2563eb white", }} > -
| Ubicación | diff --git a/app/Components/Global/table.module.css b/app/Components/Global/table.module.css index d4c065c..612ddf8 100644 --- a/app/Components/Global/table.module.css +++ b/app/Components/Global/table.module.css @@ -7,3 +7,40 @@ scroll-behavior: smooth; transition: all 0.3s ease; } + +.WINDOWS::before { + content: ""; + display: inline-block; + width: 20px; + height: 20px; + background-image: url("/windows.png"); + background-size: contain; + background-repeat: no-repeat; + margin-right: 6px; + vertical-align: middle; +} + +.MACINTOSH::before { + content: ""; + display: inline-block; + width: 20px; + height: 20px; + background-image: url("/apple.png"); + background-size: contain; + background-repeat: no-repeat; + margin-right: 6px; + vertical-align: middle; + left: 0; +} + +.PROFESORES::before { + content: ""; + display: inline-block; + width: 20px; + height: 20px; + background-image: url("/teacher.png"); + background-size: contain; + background-repeat: no-repeat; + margin-right: 6px; + vertical-align: middle; +} \ No newline at end of file diff --git a/app/Components/Global/table.tsx b/app/Components/Global/table.tsx index a44a1b4..66e3f7f 100644 --- a/app/Components/Global/table.tsx +++ b/app/Components/Global/table.tsx @@ -1,6 +1,5 @@ "use client"; -import React from "react"; import styles from "./table.module.css"; interface TableProps { @@ -24,7 +23,7 @@ export default function Table({ headers, data }: TableProps) { data.map((row, rowIndex) => (|
|---|---|
| {row[header]} | +{row[header]} | ))}