File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
special-pages/pages/onboarding/app/components Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 23
23
transition : transform 0.3s ease-in-out;
24
24
transform : translateY (0 );
25
25
26
- & [data-current = "welcome" ] {
27
- transform : translateY (calc (50vh - 288px ));
28
- }
26
+ & [data-current = "welcome" ],
29
27
& [data-current = "getStarted" ] {
30
- transform : translateY (calc (50vh - 288px ));
28
+ /* max() is not supported by stylelint's CSS parser: https://github.com/csstree/csstree/issues/164 */
29
+ /* stylelint-disable-next-line csstree/validator */
30
+ transform : translateY (max (50vh - 288px , 0px ));
31
31
}
32
32
}
33
33
Original file line number Diff line number Diff line change 1
1
.hiker {
2
2
bottom : 0 ;
3
- position : absolute ;
3
+ position : fixed ;
4
4
right : var (--sp-35 );
5
5
6
6
animation-name : hiker-appear;
You can’t perform that action at this time.
0 commit comments