We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f4e461 commit c130623Copy full SHA for c130623
special-pages/pages/onboarding/app/components/App2.module.css
@@ -23,11 +23,11 @@
23
transition: transform 0.3s ease-in-out;
24
transform: translateY(0);
25
26
- &[data-current="welcome"] {
27
- transform: translateY(calc(50vh - 288px));
28
- }
+ &[data-current="welcome"],
29
&[data-current="getStarted"] {
30
+ /* max() is not supported by stylelint's CSS parser: https://github.com/csstree/csstree/issues/164 */
+ /* stylelint-disable-next-line csstree/validator */
+ transform: translateY(max(50vh - 288px, 0px));
31
}
32
33
special-pages/pages/onboarding/app/components/v3/Hiker.module.css
@@ -1,6 +1,6 @@
1
.hiker {
2
bottom: 0;
3
- position: absolute;
+ position: fixed;
4
right: var(--sp-35);
5
6
animation-name: hiker-appear;
0 commit comments