Skip to content

Commit

Permalink
fix(): Footer separator and top margin.
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanCQ committed Sep 17, 2024
1 parent 0598b03 commit f015b57
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/custom/docs/components/footer/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { QuantinuumLogo } from "../../QuantinuumLogo";

import { Separator } from "src";
export const Footer = (props: { subtitle: string, columns: {
title: string;
items: {
Expand All @@ -8,6 +8,12 @@ export const Footer = (props: { subtitle: string, columns: {
}[];
}[] }) => {
return (
<div>

<div className="my-24"></div>
<Separator/>
<div className="my-12"></div>

<footer className="text-muted-foreground flex w-full flex-col justify-between md:items-start lg:flex-row ">
<div className="mb-12 md:mb-0">
<div className="-mt-4">
Expand Down Expand Up @@ -49,5 +55,6 @@ export const Footer = (props: { subtitle: string, columns: {
})}
</div>
</footer>
</div>
)
}

0 comments on commit f015b57

Please sign in to comment.