From f015b5725d9e5b2340ee4391801c4529acb1a0e7 Mon Sep 17 00:00:00 2001 From: aidanCQ Date: Tue, 17 Sep 2024 13:47:46 +0100 Subject: [PATCH] fix(): Footer separator and top margin. --- src/custom/docs/components/footer/index.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/custom/docs/components/footer/index.tsx b/src/custom/docs/components/footer/index.tsx index 967a841..2a062a9 100644 --- a/src/custom/docs/components/footer/index.tsx +++ b/src/custom/docs/components/footer/index.tsx @@ -1,5 +1,5 @@ import { QuantinuumLogo } from "../../QuantinuumLogo"; - +import { Separator } from "src"; export const Footer = (props: { subtitle: string, columns: { title: string; items: { @@ -8,6 +8,12 @@ export const Footer = (props: { subtitle: string, columns: { }[]; }[] }) => { return ( +
+ +
+ +
+ +
) }