diff --git a/src/renderer/components/WorkspaceExploreBar.vue b/src/renderer/components/WorkspaceExploreBar.vue index 1d5c26bc..ced15d5d 100644 --- a/src/renderer/components/WorkspaceExploreBar.vue +++ b/src/renderer/components/WorkspaceExploreBar.vue @@ -455,6 +455,11 @@ export default { height: calc(100vh - #{$excluding-size}); cursor: ew-resize; z-index: 99; + transition: background 0.2s; + + &:hover { + background: rgba($primary-color, 50%); + } } .workspace-explorebar { diff --git a/src/renderer/components/WorkspaceQueryTab.vue b/src/renderer/components/WorkspaceQueryTab.vue index 1541d079..6cfc02c2 100644 --- a/src/renderer/components/WorkspaceQueryTab.vue +++ b/src/renderer/components/WorkspaceQueryTab.vue @@ -289,6 +289,11 @@ export default { width: 100%; cursor: ns-resize; z-index: 99; + transition: background 0.2s; + + &:hover { + background: rgba($primary-color, 50%); + } } .workspace-query-runner-footer {