refactor(web/menu): separate header and body divs

This allows for the header to be visible even when scrolling through the menu items
This commit is contained in:
Luke
2022-07-29 18:35:21 +02:00
committed by Luke
parent a43b5eee04
commit 700fdbc3fe
2 changed files with 40 additions and 27 deletions

View File

@@ -2,7 +2,15 @@ import { Box, Text } from "@chakra-ui/react";
const Header: React.FC<{ title: string }> = ({ title }) => {
return (
<Box p={3} textAlign="center" borderTopLeftRadius="md" borderTopRightRadius="md" bg="#25262B">
<Box
p={3}
textAlign="center"
borderTopLeftRadius="md"
borderTopRightRadius="md"
bg="#25262B"
height="60px"
width="sm"
>
<Text fontSize={24} textTransform="uppercase" fontWeight={300} fontFamily="Poppins">
{title}
</Text>