From 8fd80aed1d99ef16db31c8cfc6f144ae7fa679c0 Mon Sep 17 00:00:00 2001 From: "deepsource-autofix[bot]" <62050782+deepsource-autofix[bot]@users.noreply.github.com> Date: Mon, 27 May 2024 18:02:27 +0000 Subject: [PATCH] style: format code with Prettier This commit fixes the style issues introduced in 565103d according to the output from Prettier. Details: None --- src/styles/_reset.scss | 16 ++++++++++++---- src/styles/vars.scss | 2 +- 2 files changed, 13 insertions(+), 5 deletions(-) diff --git a/src/styles/_reset.scss b/src/styles/_reset.scss index b502ca2..c5d7b37 100644 --- a/src/styles/_reset.scss +++ b/src/styles/_reset.scss @@ -5,10 +5,18 @@ padding: 0; scrollbar-color: $accent transparent; - ::-webkit-scrollbar { width: 8px } - ::-webkit-scrollbar-track { background: transparent } - ::-webkit-scrollbar-thumb { background: $accent } - ::-webkit-scrollbar-thumb:hover { background: $accent } + ::-webkit-scrollbar { + width: 8px; + } + ::-webkit-scrollbar-track { + background: transparent; + } + ::-webkit-scrollbar-thumb { + background: $accent; + } + ::-webkit-scrollbar-thumb:hover { + background: $accent; + } box-sizing: border-box; } diff --git a/src/styles/vars.scss b/src/styles/vars.scss index 92e246d..81affe5 100644 --- a/src/styles/vars.scss +++ b/src/styles/vars.scss @@ -1,7 +1,7 @@ $dark: #312620; $gray: #382e28; $light: #f0e9e4; -$accent: #A86338; +$accent: #a86338; $radius: 4px;