From 465e673715e708766999f223c5519f1b1ad4a39c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Pe=CC=81ault?= Date: Mon, 27 Jun 2022 13:27:00 +0200 Subject: [PATCH] Fix global classes --- src/style/organisms/_footer.scss | 2 +- src/style/tools/_helpers.scss | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/style/organisms/_footer.scss b/src/style/organisms/_footer.scss index cccba4f..9609b48 100644 --- a/src/style/organisms/_footer.scss +++ b/src/style/organisms/_footer.scss @@ -9,7 +9,7 @@ height: 120px; } - :global(.container) { + .container { justify-content: center; height: 100%; diff --git a/src/style/tools/_helpers.scss b/src/style/tools/_helpers.scss index a28deae..11d1a8d 100644 --- a/src/style/tools/_helpers.scss +++ b/src/style/tools/_helpers.scss @@ -1,6 +1,6 @@ /* Classes ========================================================================== */ -:global(.clear) { +.clear { @extend %clearfix; } @@ -8,7 +8,7 @@ /* Containers ========================================================================== */ // Wrap (global) -:global(.container) { +.container { width: 100%; max-width: var(--container-width); margin: 0 auto;