mirror of
https://github.com/documenso/documenso.git
synced 2025-11-15 01:01:49 +10:00
Adds consistent 'className' to action buttons
This commit is contained in:
@ -273,7 +273,6 @@ const RecipientsPage: NextPageWithLayout = (props: any) => {
|
|||||||
item.signingStatus === "SIGNED" ||
|
item.signingStatus === "SIGNED" ||
|
||||||
loading
|
loading
|
||||||
}
|
}
|
||||||
className="my-auto mr-4 h-9"
|
|
||||||
onClick={(event: any) => {
|
onClick={(event: any) => {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
event.stopPropagation();
|
event.stopPropagation();
|
||||||
@ -283,8 +282,9 @@ const RecipientsPage: NextPageWithLayout = (props: any) => {
|
|||||||
setLoading(false);
|
setLoading(false);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}}>
|
}}
|
||||||
</IconButton>
|
className="mx-1 group-hover:text-neon-dark group-hover:disabled:text-gray-400"
|
||||||
|
/>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
<Tooltip label="Delete">
|
<Tooltip label="Delete">
|
||||||
<IconButton
|
<IconButton
|
||||||
@ -301,7 +301,7 @@ const RecipientsPage: NextPageWithLayout = (props: any) => {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}}
|
}}
|
||||||
className="group-hover:text-neon-dark group-hover:disabled:text-gray-400"
|
className="mx-1 group-hover:text-neon-dark group-hover:disabled:text-gray-400"
|
||||||
/>
|
/>
|
||||||
</Tooltip>
|
</Tooltip>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user