fix: missing resizebars on mouse over

This commit is contained in:
Fabio Di Stasio 2024-05-07 18:15:32 +02:00
parent 957cb9e1a5
commit 25123e34ef
3 changed files with 3 additions and 3 deletions

View File

@ -501,7 +501,7 @@ const toggleSearchMethod = () => {
transition: background 0.2s;
&:hover {
background: rgba(var(--primary-color), 50%);
background: var(--primary-color-dark);
}
}

View File

@ -145,7 +145,7 @@ onMounted(() => {
transition: background 0.2s;
&:hover {
background: rgba(var(--primary-color), 50%);
background: var(--primary-color-dark);
}
}

View File

@ -821,7 +821,7 @@ onBeforeUnmount(() => {
transition: background 0.2s;
&:hover {
background: rgba(var(--primary-color), 50%);
background: var(--primary-color-dark);
}
}