Hi bricks team,
By using this feature, arrows are not displayed by default. They appear when the mouse is placed on the slider. In itself this is a useful feature.
The important thing here is that this feature is only used for desktop.
Hi bricks team,
By using this feature, arrows are not displayed by default. They appear when the mouse is placed on the slider. In itself this is a useful feature.
The important thing here is that this feature is only used for desktop.
Should work if you add this to your sliders css
.splide__arrow {
transition: .3s all ease-out;
opacity: 0;
}
root:hover .splide__arrow {
opacity: 1;
}