ags: sync

- remove laggy keyframe on init
- show volume on mute
- more tree compositor compatibility
This commit is contained in:
end-4
2024-01-14 02:39:34 +07:00
parent 1d0b1e8546
commit fa0dacb496
5 changed files with 66 additions and 56 deletions
+22
View File
@@ -100,6 +100,28 @@ $elevation_margin: 0.476rem;
margin: $elevation_margin;
}
@keyframes flyin-top {
from {
margin-top: -2.795rem;
}
to {
margin-top: 0rem;
}
}
@keyframes flyin-bottom {
from {
margin-top: 4.841rem;
margin-bottom: -4.841rem;
}
to {
margin-bottom: 0rem;
margin-top: 0rem;
}
}
@mixin menu_decel {
transition: 300ms cubic-bezier(0.1, 1, 0, 1);
}