From 1c9e09d22c27a2e3c0c5ad1c50384b3b0baf0b35 Mon Sep 17 00:00:00 2001 From: ItsANameToo Date: Wed, 20 Dec 2023 00:58:46 +0000 Subject: [PATCH] style: resolve style guide violations --- resources/assets/js/navbar.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/resources/assets/js/navbar.js b/resources/assets/js/navbar.js index 1392ad84..138d55e6 100644 --- a/resources/assets/js/navbar.js +++ b/resources/assets/js/navbar.js @@ -90,9 +90,9 @@ const Navbar = { }, get themeTransparency() { - if (this.theme === 'dark') { + if (this.theme === "dark") { return 0.6; - } else if (this.theme === 'dim') { + } else if (this.theme === "dim") { return 0.6; } @@ -100,9 +100,9 @@ const Navbar = { }, get themeBorderColor() { - if (this.theme === 'dark') { + if (this.theme === "dark") { return [60, 66, 73]; - } else if (this.theme === 'dim') { + } else if (this.theme === "dim") { return [40, 60, 100]; } @@ -110,9 +110,9 @@ const Navbar = { }, get themeBoxShadow() { - if (this.theme === 'dark') { + if (this.theme === "dark") { return [18, 18, 19]; - } else if (this.theme === 'dim') { + } else if (this.theme === "dim") { return [18, 18, 19]; }