Try to fix css goofiness

This commit is contained in:
regalijan 2023-10-19 16:50:53 -04:00
parent 6cdbd99d31
commit ce868b44ab
Signed by: regalijan
GPG Key ID: 5D4196DA269EF520

View File

@ -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>