Skip to content

Commit

Permalink
fix footer style issue
Browse files Browse the repository at this point in the history
  • Loading branch information
crazyman committed Aug 10, 2023
1 parent c8381ba commit 0a0ad44
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions src/components/layouts/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,8 @@ import Divider from "@mui/material/Divider";
export default function Footer() {
return (
<Box
component="footer"
sx={{
position: "absolute",
bottom: 0,
left: 0,
right: 0,
display: "flex",
flexDirection: "column",
justifyContent: "center",
Expand All @@ -19,21 +16,24 @@ export default function Footer() {
px: "60px",
}}
>
<Box>
<Divider>
<Typography color="grey.700" variant="h6">
Developed by{" "}
<Link
href="https://github.com/crazy-man22"
underline="none"
sx={{ color: "text.primary" }}
target="_blank"
>
Crazy Man
</Link>
</Typography>
</Divider>
</Box>
<Divider
component="div"
sx={{
"::before, ::after": { top: "0%" },
}}
>
<Typography color="grey.700" variant="h6" component="span">
Developed by{" "}
<Link
target="_blank"
underline="none"
sx={{ color: "text.primary" }}
href="https://github.com/crazy-man22"
>
Crazy Man
</Link>
</Typography>
</Divider>
</Box>
);
}

1 comment on commit 0a0ad44

@vercel
Copy link

@vercel vercel bot commented on 0a0ad44 Aug 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.