1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-02-08 15:58:45 +01:00

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}); height: calc(100vh - #{$excluding-size});
cursor: ew-resize; cursor: ew-resize;
z-index: 99; z-index: 99;
transition: background 0.2s;
&:hover {
background: rgba($primary-color, 50%);
}
} }
.workspace-explorebar { .workspace-explorebar {

View File

@ -289,6 +289,11 @@ export default {
width: 100%; width: 100%;
cursor: ns-resize; cursor: ns-resize;
z-index: 99; z-index: 99;
transition: background 0.2s;
&:hover {
background: rgba($primary-color, 50%);
}
} }
.workspace-query-runner-footer { .workspace-query-runner-footer {