From f62d148b4e64613e11ff45e07e829a5c6c026692 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Sat, 9 Nov 2024 04:30:27 -0800 Subject: [PATCH] fix footer padding --- src/components/Footer.astro | 10 ++++++++-- src/layouts/BaseLayout.astro | 2 -- src/pages/index.astro | 2 ++ src/styles/global.css | 10 +++++++--- src/styles/main-page.css | 8 ++++++++ 5 files changed, 25 insertions(+), 7 deletions(-) diff --git a/src/components/Footer.astro b/src/components/Footer.astro index f4d22b2..1341caa 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,8 +1,14 @@ --- import matrixLogo from "@icons/matrix-logo.svg?raw"; import gitLogo from "@icons/git-logo.svg?raw"; + +interface Props { + class?: string; +} + +const props = Astro.props; --- -