Removed scale on hover and button box class that is not used

This commit is contained in:
Lucas Oliveira 2024-06-10 08:43:00 -03:00
commit debaa59d8b
3 changed files with 2 additions and 6 deletions

View file

@ -5,7 +5,7 @@ export default function ObjectRender({ object }: { object: any }): JSX.Element {
return (
<DictAreaModal value={object}>
<div className="flex h-full w-full items-center align-middle transition-all hover:scale-105">
<div className="flex h-full w-full items-center align-middle transition-all">
<div className="truncate">{JSON.stringify(object)}</div>
</div>
</DictAreaModal>

View file

@ -93,7 +93,7 @@ const TableComponent = forwardRef<
if (props.onGridReady) props.onGridReady(params);
setTimeout(() => {
setColumnStateChange(false);
}, 50);
}, 200);
};
const onColumnMoved = (params) => {

View file

@ -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;
}