Update colors

This commit is contained in:
april
2024-01-08 13:12:16 -06:00
parent c4f990ea19
commit 921a3be6b2
3 changed files with 33 additions and 21 deletions

View File

@@ -130,11 +130,17 @@ export default function Flight() {
{(log.pax || log.crew) &&
(log.pax.length > 0 || log.crew.length > 0) ? (
<Group grow mt="sm">
<VerticalLogItem label="Pax" content={log.pax} list />
<VerticalLogItem
label="Pax"
content={log.pax}
list
listColor="gray"
/>
<VerticalLogItem
label="Crew"
content={log.crew}
list
listColor="gray"
/>
</Group>
) : null}