Vencord/src/plugins/spotifyControls/hoverOnly.css

17 lines
357 B
CSS
Raw Normal View History

2023-04-10 18:32:11 -04:00
.vc-spotify-button-row {
height: 0;
opacity: 0;
pointer-events: none;
transition: 0.2s;
transition-property: height;
}
#vc-spotify-player:hover .vc-spotify-button-row {
opacity: 1;
height: 32px;
pointer-events: auto;
/* only transition opacity on show to prevent clipping */
transition-property: height, opacity;
}