Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Try to fix css goofiness
  • Loading branch information
regalijan committed Oct 19, 2023
1 parent 6cdbd99 commit ce868b4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion components/InactivityNoticeCard.tsx
Expand Up @@ -85,7 +85,9 @@ export default function (props: InactivityNoticeProps) {
<UnorderedList>
{Object.entries(props.decisions).map(([dept, accepted]) => (
<ListItem>
{accepted ? <Approved /> : <Denied />} {dept}
<Stack direction="row">
{accepted ? <Approved /> : <Denied />} {dept}
</Stack>
</ListItem>
))}
</UnorderedList>
Expand Down

0 comments on commit ce868b4

Please sign in to comment.