feat(UI): resizer border mouse hover animation

This commit is contained in:
Fabio Di Stasio 2021-06-30 09:49:32 +02:00
parent 51db2795bb
commit a69bdeb20d
2 changed files with 10 additions and 0 deletions

View File

@ -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 {

View File

@ -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 {