From debaa59d8b6905a8c5b58ae7b90e05a995c7ef1f Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Mon, 10 Jun 2024 08:43:00 -0300 Subject: [PATCH] Removed scale on hover and button box class that is not used --- src/frontend/src/components/objectRender/index.tsx | 2 +- src/frontend/src/components/tableComponent/index.tsx | 2 +- src/frontend/src/style/applies.css | 4 ---- 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/frontend/src/components/objectRender/index.tsx b/src/frontend/src/components/objectRender/index.tsx index 9593c5e37..36d2c59d4 100644 --- a/src/frontend/src/components/objectRender/index.tsx +++ b/src/frontend/src/components/objectRender/index.tsx @@ -5,7 +5,7 @@ export default function ObjectRender({ object }: { object: any }): JSX.Element { return ( -
+
{JSON.stringify(object)}
diff --git a/src/frontend/src/components/tableComponent/index.tsx b/src/frontend/src/components/tableComponent/index.tsx index 316155d4c..5a2434f73 100644 --- a/src/frontend/src/components/tableComponent/index.tsx +++ b/src/frontend/src/components/tableComponent/index.tsx @@ -93,7 +93,7 @@ const TableComponent = forwardRef< if (props.onGridReady) props.onGridReady(params); setTimeout(() => { setColumnStateChange(false); - }, 50); + }, 200); }; const onColumnMoved = (params) => { diff --git a/src/frontend/src/style/applies.css b/src/frontend/src/style/applies.css index f9b1b3278..9d59a284a 100644 --- a/src/frontend/src/style/applies.css +++ b/src/frontend/src/style/applies.css @@ -801,10 +801,6 @@ @apply flex-max-width mt-2 h-full; } - .button-box-modal-div { - @apply flex transform flex-col items-center justify-center rounded-lg border border-ring text-center shadow hover:scale-105 hover:shadow-lg; - } - .dialog-header-modal-div { @apply absolute left-0 top-2 z-50 hidden pl-4 pt-4 sm:block; }