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; y: -parent.y;
} }
states [ states [
innactive when !root.page-visible : { inactive when !root.page-visible : {
height: 0; height: 0;
} }
] ]
transitions [ transitions [
out innactive : { out inactive : {
animate height { duration: 750ms; easing: ease-in-out; } animate height { duration: 750ms; easing: ease-in-out; }
} }
in innactive : { in inactive : {
animate height { duration: 200ms; easing: ease-in; } animate height { duration: 200ms; easing: ease-in; }
} }
] ]

View file

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

View file

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