Move margin to button flex

This commit is contained in:
2024-02-28 02:53:02 -05:00
parent 5f86cc4f79
commit e1fd524984

View File

@ -190,7 +190,7 @@ export default function () {
</Stack>
</CardBody>
<CardFooter>
<Flex gap="8px">
<Flex gap="8px" mr="8px">
{can_approve && event.pending ? (
<>
<Button
@ -224,7 +224,7 @@ export default function () {
</>
) : null}
</Flex>
<Text alignSelf="center" fontSize="sm" pl="8px">
<Text alignSelf="center" fontSize="sm">
Status:{" "}
{event.pending ? "Pending" : event.approved ? "Approved" : "Denied"}
</Text>