feat: active sash background color

This commit is contained in:
mathuo 2021-06-03 21:26:54 +01:00
parent f70e26c8ad
commit f40f96f840

View File

@ -102,6 +102,17 @@
position: absolute;
z-index: 99;
outline: none;
&:active {
transition: background-color 0.1s ease-in-out;
background-color: var(--dv-active-sash-color, transparent);
}
&:hover {
background-color: var(--dv-active-sash-color, transparent);
transition: background-color 0.1s ease-in-out;
transition-delay: 0.5s;
}
}
}