Skip to content

Commit

Permalink
feat(UI): resizer border mouse hover animation
Browse files Browse the repository at this point in the history
  • Loading branch information
Fabio286 committed Jun 30, 2021
1 parent 51db279 commit a69bdeb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/renderer/components/WorkspaceExploreBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
5 changes: 5 additions & 0 deletions src/renderer/components/WorkspaceQueryTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit a69bdeb

Please sign in to comment.