added btn style to custom footer

This commit is contained in:
Ulysia 2024-10-14 09:27:45 +02:00
parent 9b912f79d7
commit ac2160030b

View file

@ -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