Merge pull request #1855 from RafaelTaranto/fix/ui-migration-fixes

LAM-1421 fix: UI migration fixes
This commit is contained in:
Rafael Taranto 2025-05-23 16:04:24 +01:00 committed by GitHub
commit b290f9e34c
5 changed files with 13 additions and 13 deletions

View file

@ -14,6 +14,7 @@ const ToggleButtonGroup = ({
}) => {
return (
<MUIToggleButtonGroup
className="flex flex-col gap-4"
size={size}
name={name}
orientation={orientation}

View file

@ -27,8 +27,9 @@
margin-top: 8px;
}
/*TODO important because of tailwind integration with MUI*/
.fullPartP {
color: white;
color: white !important;
display: inline;
}

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,