From ac2160030baaa79e3507070c7f0f746470bbd674 Mon Sep 17 00:00:00 2001 From: Ulysia Date: Mon, 14 Oct 2024 09:27:45 +0200 Subject: [PATCH] added btn style to custom footer --- quartz/components/CustomFooter.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/quartz/components/CustomFooter.tsx b/quartz/components/CustomFooter.tsx index e0b73fa..3f20c46 100644 --- a/quartz/components/CustomFooter.tsx +++ b/quartz/components/CustomFooter.tsx @@ -1,5 +1,6 @@ import { QuartzComponent, QuartzComponentConstructor, QuartzComponentProps } from "./types" import style from "./styles/footer.scss" +import btnstyle from "./styles/buttons8831.scss" import FooterLinksConstructor from "./Footer_links" import Btn8831 from "./Btn8831" @@ -20,6 +21,6 @@ export default ((opts?: Options) => { ) } - CustomFooter.css = style + CustomFooter.css = style + btnstyle return CustomFooter }) satisfies QuartzComponentConstructor