diff --git a/web/src/components/layout/Footer.tsx b/web/src/components/layout/Footer.tsx index d8b3790..95a11de 100644 --- a/web/src/components/layout/Footer.tsx +++ b/web/src/components/layout/Footer.tsx @@ -12,7 +12,73 @@ export const Footer = () => { return ( ); diff --git a/web/src/components/layout/footer.module.scss b/web/src/components/layout/footer.module.scss index c3d2099..84c7dc6 100644 --- a/web/src/components/layout/footer.module.scss +++ b/web/src/components/layout/footer.module.scss @@ -4,8 +4,17 @@ align-items: flex-end; padding: var(--spacing-sitepadding); background: #ccc; +} - a { - text-decoration: none; - } +.contactList { + width: 100%; + display: grid; + grid-template-columns: repeat(12, 1fr); + column-gap: var(--spacing-gap-column); + row-gap: var(--spacing-gap-column); +} + +.contactItem { + list-style: none; + grid-column: span 3; } \ No newline at end of file