From 884fa85b89f2bd8571c30482b611c113ab8ad2e9 Mon Sep 17 00:00:00 2001 From: Theo Plawinski <36503652+theoplawinski@users.noreply.github.com> Date: Tue, 15 Oct 2024 10:19:09 +0200 Subject: [PATCH] Update styles base (#190) * Removed unused imports * Added font smoothing antialiased * Reset default ol list style --- apps/front/src/styles/_references.scss | 4 ---- apps/front/src/styles/index.scss | 1 + apps/front/src/styles/reference.scss | 1 + apps/front/src/styles/reset-inline.scss | 4 +++- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/front/src/styles/_references.scss b/apps/front/src/styles/_references.scss index f4a565f..357b500 100644 --- a/apps/front/src/styles/_references.scss +++ b/apps/front/src/styles/_references.scss @@ -1,11 +1,7 @@ @forward "./_breakpoints.scss"; -@forward "./_colors.scss"; -@forward "./_ease.scss"; @forward "./_fonts.scss"; @forward "./_functions.scss"; -@forward "./_grid.scss"; @forward "./_ratio.scss"; -@forward "./_reset.scss"; @forward "./_texts.scss"; @forward "./_utils.scss"; @forward "./_viewport.scss"; diff --git a/apps/front/src/styles/index.scss b/apps/front/src/styles/index.scss index af4329c..57089b5 100644 --- a/apps/front/src/styles/index.scss +++ b/apps/front/src/styles/index.scss @@ -15,6 +15,7 @@ html { font-size: var(--font-size); + -webkit-font-smoothing: antialiased; } body { diff --git a/apps/front/src/styles/reference.scss b/apps/front/src/styles/reference.scss index 533d059..0b7759f 100644 --- a/apps/front/src/styles/reference.scss +++ b/apps/front/src/styles/reference.scss @@ -1,5 +1,6 @@ @forward "./_breakpoints"; @forward "./_fonts"; +@forward "./_functions.scss"; @forward "./_ratio"; @forward "./_texts"; @forward "./_utils"; diff --git a/apps/front/src/styles/reset-inline.scss b/apps/front/src/styles/reset-inline.scss index a577e33..f6d162a 100644 --- a/apps/front/src/styles/reset-inline.scss +++ b/apps/front/src/styles/reset-inline.scss @@ -74,7 +74,9 @@ strong { /** * Remove list style dote by default */ -ul { +ul, +ol, +menu { list-style: none; }