Implement filtering flights by aircraft

This commit is contained in:
april
2024-01-11 13:21:55 -06:00
parent b50d333677
commit 38d62770f6
4 changed files with 121 additions and 36 deletions

View File

@@ -5,13 +5,13 @@ import { IconFeather } from "@tabler/icons-react";
export default function Flights() {
return (
<>
<Container visibleFrom="md" h="calc(100vh - 95px)">
<Container visibleFrom="lg" h="calc(100vh - 95px)">
<Stack align="center" justify="center" h="100%">
<IconFeather size="3rem" />
<Center>Select a flight</Center>
</Stack>
</Container>
<Container hiddenFrom="md">
<Container hiddenFrom="lg">
<MobileFlightsList />
</Container>
</>