From bcdbcbd8076a78e2cd02ee7576f58fc1c1d02256 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Tue, 2 Sep 2025 14:35:18 +0800 Subject: [PATCH] Improved footer component --- fwt/components/Footer/Footer.sass | 1 - fwt/components/Footer/Footer.tsx | 5 ++++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/fwt/components/Footer/Footer.sass b/fwt/components/Footer/Footer.sass index 8eaac3a..70cd207 100644 --- a/fwt/components/Footer/Footer.sass +++ b/fwt/components/Footer/Footer.sass @@ -4,5 +4,4 @@ position: fixed bottom: 0 width: 100% - font-size: 0.75rem opacity: 0.8 diff --git a/fwt/components/Footer/Footer.tsx b/fwt/components/Footer/Footer.tsx index b5fe510..a8f4780 100644 --- a/fwt/components/Footer/Footer.tsx +++ b/fwt/components/Footer/Footer.tsx @@ -1,5 +1,6 @@ import './Footer.sass' import type { JSXElement } from 'solid-js' +import Row from '../Row/Row' interface Props { children: JSXElement @@ -8,7 +9,9 @@ interface Props { export default (props: Props) => { return ( <> - + ) }