Skip to content

Commit

Permalink
fix: missing resizebars on mouse over
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio286 committed May 7, 2024
1 parent 957cb9e commit 25123e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/renderer/components/WorkspaceExploreBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ const toggleSearchMethod = () => {
transition: background 0.2s;
&:hover {
background: rgba(var(--primary-color), 50%);
background: var(--primary-color-dark);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/WorkspaceQueryConsole.vue
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ onMounted(() => {
transition: background 0.2s;
&:hover {
background: rgba(var(--primary-color), 50%);
background: var(--primary-color-dark);
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/components/WorkspaceTabQuery.vue
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ onBeforeUnmount(() => {
transition: background 0.2s;
&:hover {
background: rgba(var(--primary-color), 50%);
background: var(--primary-color-dark);
}
}
Expand Down

0 comments on commit 25123e3

Please sign in to comment.