From 1869bd2eb610fdb6a914ea3dd305628d57d80bbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Pe=CC=81ault?= Date: Tue, 5 Oct 2021 21:00:56 +0200 Subject: [PATCH] Change Switcher position with responsive --- src/style/molecules/_switcher.scss | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/style/molecules/_switcher.scss b/src/style/molecules/_switcher.scss index 4ce1e57..d7d3d7c 100644 --- a/src/style/molecules/_switcher.scss +++ b/src/style/molecules/_switcher.scss @@ -2,10 +2,14 @@ $shadow-color: rgba(0, 0, 0, 0.05); position: fixed; z-index: 999; - bottom: 0; - left: 0; + bottom: 16px; + left: 16px; @include bp (sm) { + bottom: 20px; + left: 20px; + } + @include bp (md) { bottom: 40px; left: 40px; }