feat: navbar and footer

This commit is contained in:
2025-08-19 11:59:58 +04:00
parent d3d8c5117b
commit be034ebbd0
24 changed files with 452 additions and 38 deletions

View File

@ -1,9 +1,8 @@
.container {
height: calc(100vh - 150px);
@media (max-width: 48em) {
width: 80vw;
height: calc(100vh - 200px);
}
}
@ -11,6 +10,10 @@
border-radius: var(--mantine-spacing-md);
gap: 0;
@media (max-width: 48em) {
max-height: calc(100vh - 200px);
}
@mixin light {
background-color: var(--color-light-aqua);
}

View File

@ -22,7 +22,7 @@ const StatusColumnWrapper = ({ renderHeader, children }: Props) => {
scrollbarSize={10}
type={"always"}
scrollbars={"y"}>
<Stack mah={"calc(100vh - 220px)"}>{children}</Stack>
<Stack mah={"calc(100vh - 250px)"}>{children}</Stack>
</ScrollArea>
</Stack>
</Box>