diff --git a/src/components/atoms/Footer.tsx b/src/components/atoms/Footer.tsx
index c682cd8..dfcd460 100644
--- a/src/components/atoms/Footer.tsx
+++ b/src/components/atoms/Footer.tsx
@@ -1,16 +1,19 @@
import * as React from "react"
import { ReactNode } from "react"
import { Box, useTheme } from "@mui/material"
+import styled from "@emotion/styled"
export type FooterProps = {
+ className?: string
children: ReactNode
}
-export const Footer = ({ children }: FooterProps) => {
+export const Footer = styled(({ className, children }: FooterProps) => {
const theme = useTheme()
return (
{
{children}
)
-}
+})`
+ > a {
+ display: flex;
+ align-items: center;
+ }
+`
diff --git a/src/components/organisms/Layout.tsx b/src/components/organisms/Layout.tsx
index 3c31b74..9c6e875 100644
--- a/src/components/organisms/Layout.tsx
+++ b/src/components/organisms/Layout.tsx
@@ -76,7 +76,7 @@ const Layout = ({ pageTitle, preTitle, children }: LayoutProps) => {