Implement flight log creation

This commit is contained in:
april
2024-01-03 15:27:58 -06:00
parent 8e03e3dccf
commit a52eab9105
12 changed files with 742 additions and 54 deletions

View File

@@ -1,4 +1,4 @@
import { Divider, Grid, Container } from "@mantine/core";
import { Divider, Grid, Container, ScrollAreaAutosize } from "@mantine/core";
import { Outlet } from "@remix-run/react";
import { FlightsList } from "./flights-list";
@@ -11,7 +11,9 @@ export default function FlightsLayout() {
</Grid.Col>
<Divider orientation="vertical" m="sm" />
<Grid.Col span="auto">
<Outlet />
<ScrollAreaAutosize mah="calc(100vh - 95px)">
<Outlet />
</ScrollAreaAutosize>
</Grid.Col>
</Grid>
<Container hiddenFrom="md">