From d363306235f2a48f16e488f20f73e2233ddcf281 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 29 Nov 2023 18:07:20 +0100 Subject: refactor(pages): improve Homepage * move custom homepage components that does not require props to the MDX file (links should not need to be translated here but where they are defined) * move SEO title and meta desc to MDX file * make Page component the wrapper instead of using a React fragment * fix MDX module types --- src/styles/pages/home.module.scss | 34 ---------------------------------- 1 file changed, 34 deletions(-) delete mode 100644 src/styles/pages/home.module.scss (limited to 'src/styles') diff --git a/src/styles/pages/home.module.scss b/src/styles/pages/home.module.scss deleted file mode 100644 index a926ec3..0000000 --- a/src/styles/pages/home.module.scss +++ /dev/null @@ -1,34 +0,0 @@ -@use "../abstracts/functions" as fun; -@use "../abstracts/mixins" as mix; - -.section { - --card-width: 25ch; - - &:last-of-type { - border-bottom: none; - } -} - -.columns { - margin: 0 0 var(--spacing-sm); -} - -.list { - margin: 0 0 var(--spacing-sm); - - &--cards { - @include mix.media("screen") { - @include mix.dimensions("md") { - margin: 0 calc(var(--spacing-sm) * -1) var(--spacing-sm); - } - } - } -} - -.icon { - margin-right: var(--spacing-2xs); - - &--feed { - width: var(--icon-size); - } -} -- cgit v1.2.3