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; }