Merge pull request #1855 from RafaelTaranto/fix/ui-migration-fixes
LAM-1421 fix: UI migration fixes
This commit is contained in:
commit
b290f9e34c
5 changed files with 13 additions and 13 deletions
|
|
@ -14,6 +14,7 @@ const ToggleButtonGroup = ({
|
|||
}) => {
|
||||
return (
|
||||
<MUIToggleButtonGroup
|
||||
className="flex flex-col gap-4"
|
||||
size={size}
|
||||
name={name}
|
||||
orientation={orientation}
|
||||
|
|
|
|||
|
|
@ -27,8 +27,9 @@
|
|||
margin-top: 8px;
|
||||
}
|
||||
|
||||
/*TODO important because of tailwind integration with MUI*/
|
||||
.fullPartP {
|
||||
color: white;
|
||||
color: white !important;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue