From f28d7451e77ba9e830d8f04111ef5f0a6d855311 Mon Sep 17 00:00:00 2001 From: Miodec Date: Wed, 20 Sep 2023 11:57:00 +0100 Subject: [PATCH] refactor: use nesting --- frontend/src/styles/footer.scss | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/frontend/src/styles/footer.scss b/frontend/src/styles/footer.scss index a4528ac99..2f6ebfd62 100644 --- a/frontend/src/styles/footer.scss +++ b/frontend/src/styles/footer.scss @@ -96,20 +96,20 @@ footer { transition: 0.125s; } } -} -footer.focus { - .keyTips { - opacity: 0 !important; - } - .textButton { - opacity: 0 !important; - } - #newVersionIndicator { - opacity: 0 !important; - } - #commandLineMobileButton { - opacity: 0 !important; - pointer-events: none !important; + &.focus { + .keyTips { + opacity: 0 !important; + } + .textButton { + opacity: 0 !important; + } + #newVersionIndicator { + opacity: 0 !important; + } + #commandLineMobileButton { + opacity: 0 !important; + pointer-events: none !important; + } } }