From 3ab382cb5bd7858f694813540ae811edde0a24de Mon Sep 17 00:00:00 2001 From: Artem Tarasov Date: Fri, 19 Mar 2021 11:18:06 +0300 Subject: [PATCH] Web: Files: fix position of label ToggleButton in Settings --- .../src/components/pages/Settings/Section/Body/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/products/ASC.Files/Client/src/components/pages/Settings/Section/Body/index.js b/products/ASC.Files/Client/src/components/pages/Settings/Section/Body/index.js index 3d4f068348..cf1a18b08f 100644 --- a/products/ASC.Files/Client/src/components/pages/Settings/Section/Body/index.js +++ b/products/ASC.Files/Client/src/components/pages/Settings/Section/Body/index.js @@ -9,7 +9,7 @@ import { inject, observer } from "mobx-react"; const StyledSettings = styled.div` display: grid; - grid-gap: 12px; + grid-gap: 19px; .toggle-btn { position: relative; @@ -20,8 +20,8 @@ const StyledSettings = styled.div` margin-top: 26px; } - .toggle-btn:first-child { - margin-top: -3px; + .toggle-button-text { + margin-top: -1px; } `;