janitor: Fix typo

This commit is contained in:
Simon Hausmann 2022-04-19 16:58:06 +02:00
parent af3db79472
commit ebb6dd4449
3 changed files with 8 additions and 8 deletions

View file

@ -37,15 +37,15 @@ export InkPage := Page {
y: -parent.y;
}
states [
innactive when !root.page-visible : {
inactive when !root.page-visible : {
height: 0;
}
]
transitions [
out innactive : {
out inactive : {
animate height { duration: 750ms; easing: ease-in-out; }
}
in innactive : {
in inactive : {
animate height { duration: 200ms; easing: ease-in; }
}
]