You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
469 B

@use 'mixins/mixins' as *;
@use 'common/var' as *;
@mixin showScrollbar {
@include b(virtual-scrollbar) {
opacity: 1;
}
}
@include b(vl) {
@include e(wrapper) {
position: relative;
&:hover {
@include showScrollbar();
}
&.always-on {
@include showScrollbar();
}
}
}
@include b(virtual-scrollbar) {
opacity: 0;
transition: opacity 340ms ease-out;
}
@include b(vg) {
@include e(wrapper) {
position: relative;
}
}