Fix style of divider

This commit is contained in:
Elio Struyf
2023-11-13 20:11:34 +00:00
parent 07db685666
commit 03aee57221
+1 -1
View File
@@ -114,7 +114,7 @@ const Actions: React.FunctionComponent<IActionsProps> = ({
{customActions?.length > 0 && (
<>
{actions?.length > 0 && <div className="divider py-4 w-full" style={{ height: `1px` }}></div>}
{actions?.length > 0 && <div className="divider w-full" style={{ height: `1px` }}></div>}
{...customActions}
</>