Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Move margin to button flex
  • Loading branch information
regalijan committed Feb 28, 2024
1 parent 5f86cc4 commit e1fd524
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/routes/events-team.tsx
Expand Up @@ -190,7 +190,7 @@ export default function () {
</Stack>
</CardBody>
<CardFooter>
<Flex gap="8px">
<Flex gap="8px" mr="8px">
{can_approve && event.pending ? (
<>
<Button
Expand Down Expand Up @@ -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>
Expand Down

0 comments on commit e1fd524

Please sign in to comment.