Skip to content

Commit

Permalink
styling
Browse files Browse the repository at this point in the history
  • Loading branch information
psychologianauki committed Nov 25, 2023
1 parent 8bdcad2 commit f80a128
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -558,6 +558,7 @@ const CheckListItem = ({
</div>
</td>
<td className="py-2 px-4 bg-yellow-100 relative">
{isAlreadyDeleted !== true &&
<CheckRuleItem
disabled={isDisabled}
parameters={check?.rule?.warning}
Expand All @@ -574,9 +575,11 @@ const CheckListItem = ({
changeEnabled={changeEnabled}
configuredType={enabledType}
/>
}
<div className="w-5 bg-white absolute h-full right-0 top-0"></div>
</td>
<td className="py-2 px-4 bg-orange-100">
{isAlreadyDeleted !== true &&
<CheckRuleItem
disabled={isDisabled}
parameters={check?.rule?.error}
Expand All @@ -593,8 +596,10 @@ const CheckListItem = ({
changeEnabled={changeEnabled}
configuredType={enabledType}
/>
}
</td>
<td className="py-2 px-4 bg-red-100">
<td className="py-2 px-4 bg-red-100 h-18">
{isAlreadyDeleted !== true &&
<CheckRuleItem
disabled={isDisabled}
parameters={check?.rule?.fatal}
Expand All @@ -611,6 +616,7 @@ const CheckListItem = ({
changeEnabled={changeEnabled}
configuredType={enabledType}
/>
}
</td>
</tr>
{expanded && (
Expand Down

0 comments on commit f80a128

Please sign in to comment.