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; }
}
]

View file

@ -37,19 +37,19 @@ 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;
delay: 100ms;
easing: ease-in-out;
}
}
in innactive : {
in inactive : {
animate height { duration: 200ms; easing: ease-in; }
}
]

View file

@ -200,12 +200,12 @@ MainWindow := Window {
y: parent.height - self.height;
background: color-info.color;
states [
innactive when root.active-page != 0 : {
inactive when root.active-page != 0 : {
height: 0phx;
}
]
transitions [
out innactive : {
out inactive : {
animate height { duration: 750ms; easing: ease-in-out; }
}
]