fix: logs table height

This commit is contained in:
Rafael Taranto 2025-05-19 10:23:19 +01:00
parent 2b8f140c77
commit 22af42636b

View file

@ -4,7 +4,8 @@ import React, { memo } from 'react'
const TableRow = memo(
({ className, children, header, error, success, size = 'sm', ...props }) => {
const classnamesObj = {
'p-1 h-12 bg-white': !header,
'p-1 bg-white': !header,
'h-12': !header && size !== 'sm' && size !== 'lg',
'h-8': !header && size === 'sm',
'h-9 font-bold text-base ': !header && size === 'lg',
'bg-misty-rose': error,