Skip to content

Commit

Permalink
style: resolve style guide violations
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsANameToo authored and github-actions[bot] committed Dec 20, 2023
1 parent 51ae7b4 commit 1c9e09d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions resources/assets/js/navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,29 +90,29 @@ 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;
}

return 0.22;
},

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];
}

return [219, 222, 229];
},

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];
}

Expand Down

0 comments on commit 1c9e09d

Please sign in to comment.