Skip to content

Commit f015b57

Browse files
committed
fix(): Footer separator and top margin.
1 parent 0598b03 commit f015b57

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

src/custom/docs/components/footer/index.tsx

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { QuantinuumLogo } from "../../QuantinuumLogo";
2-
2+
import { Separator } from "src";
33
export const Footer = (props: { subtitle: string, columns: {
44
title: string;
55
items: {
@@ -8,6 +8,12 @@ export const Footer = (props: { subtitle: string, columns: {
88
}[];
99
}[] }) => {
1010
return (
11+
<div>
12+
13+
<div className="my-24"></div>
14+
<Separator/>
15+
<div className="my-12"></div>
16+
1117
<footer className="text-muted-foreground flex w-full flex-col justify-between md:items-start lg:flex-row ">
1218
<div className="mb-12 md:mb-0">
1319
<div className="-mt-4">
@@ -49,5 +55,6 @@ export const Footer = (props: { subtitle: string, columns: {
4955
})}
5056
</div>
5157
</footer>
58+
</div>
5259
)
5360
}

0 commit comments

Comments
 (0)