mirror of
https://github.com/Equicord/Equicord.git
synced 2025-02-23 08:39:24 -05:00
17 lines
357 B
CSS
17 lines
357 B
CSS
|
.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;
|
||
|
}
|