From 8011f7c0295366675b5034195874c52dae150062 Mon Sep 17 00:00:00 2001 From: Deepjyoti Barman Date: Thu, 17 Sep 2020 11:05:41 +0530 Subject: [PATCH] Move new changes to the scss file Move the new code for the settings cog to the scss file rather than the css directoly and then let scss fill the css file. --- css/main.css | 8 +++----- scss/main.scss | 12 ++++++++++++ 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/css/main.css b/css/main.css index 9b29874..cd59a45 100644 --- a/css/main.css +++ b/css/main.css @@ -158,8 +158,6 @@ body { height: 48px; position: absolute; bottom: 25px; - right: 25px; -} -.cog:hover { - fill: white; - } + right: 25px; } + #settings-cog .cog:hover { + fill: white; } diff --git a/scss/main.scss b/scss/main.scss index 5583d79..0247f1b 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -251,4 +251,16 @@ body { cursor: pointer; } } +} + +#settings-cog { + width: 48px; + height: 48px; + position: absolute; + bottom: 25px; + right: 25px; + + .cog:hover { + fill: white; + } } \ No newline at end of file