mirror of
https://github.com/thelounge/thelounge
synced 2024-11-11 15:07:14 +00:00
fix animation jitter when clicking join channel button
This commit is contained in:
parent
313a321918
commit
dfe4b2f6d6
1 changed files with 2 additions and 1 deletions
|
@ -668,7 +668,8 @@ kbd {
|
||||||
}
|
}
|
||||||
|
|
||||||
#sidebar .lobby .add-channel.opened {
|
#sidebar .lobby .add-channel.opened {
|
||||||
transform: rotate(45deg);
|
/* translateZ(0) enables hardware acceleration, this is to avoid jittering when animating */
|
||||||
|
transform: rotate(45deg) translateZ(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
#sidebar .chan.active .close {
|
#sidebar .chan.active .close {
|
||||||
|
|
Loading…
Reference in a new issue