From ffb472f4d1532625bd6dae7ccb3fb20f2f51a515 Mon Sep 17 00:00:00 2001 From: IO420 <320154041@pcpuma.acatlan.unam.mx> Date: Tue, 2 Dec 2025 14:18:36 -0600 Subject: [PATCH] fixed style --- src/app/styles/base/globales.scss | 1 - src/components/AgregarEquipo.tsx | 6 ++++-- src/components/Editar.tsx | 16 ++++++++++++++-- 3 files changed, 18 insertions(+), 5 deletions(-) diff --git a/src/app/styles/base/globales.scss b/src/app/styles/base/globales.scss index 2dc8bd4..e49d5ee 100644 --- a/src/app/styles/base/globales.scss +++ b/src/app/styles/base/globales.scss @@ -97,7 +97,6 @@ select { //overwrite css toaster [data-rht-toaster] { bottom: auto !important; - right: auto !important; max-width: 100% !important; width: auto !important; pointer-events: none !important; diff --git a/src/components/AgregarEquipo.tsx b/src/components/AgregarEquipo.tsx index 7f1f527..fc6ab56 100644 --- a/src/components/AgregarEquipo.tsx +++ b/src/components/AgregarEquipo.tsx @@ -430,7 +430,9 @@ export default function Page() { type="text" placeholder="Ingresa serie" value={formData.serie} - onChange={(e) => handleInputChange("serie", e.target.value)} + onChange={(e) => + handleInputChange("serie", e.target.value.toUpperCase()) + } />
@@ -662,7 +664,7 @@ export default function Page() {