You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The video shows that the start page haskell.org behaves glitchy on mobile. You can scroll horizontally, but you shouldn't be able to. This doesn't result in a terrible user experience, but still is an issue that should be avoided.
Record_2023-02-03-11-39-59.mp4
I tested with Android 13 and latest Chrome and Kiwi Browser on a OnePlus 8.
It's noteworthy that there is an open PR mentioning improvements of the landing page. There is a chance this PR would solve the demonstrated issue, but it has to be tested to know if this is the case or not.
Yeah, #242 does make things worse, because it forces the "Haskell logo, Haskell, An advanced, purely functional programming language" block to be on the same horizontal level as "Declarative, statically typed code, primes code, Get Started" block, making the screen wider. The status quo is that on narrow screens the first block appears above the second.
How would you suggest dealing with this issue? Fixing the current version independently of #242 and making sure that #242 only gets merged if it doesn't make it worse / break it again? Or work on #242 directly?
@andys8 That looks related to #29 :/. Could you try explicitly setting the locale before running the script?
LC_ALL=C.UTF-8 ./buildAndWatch
I though that #236 should have fixed that, but apparently not. I'll need to take another look into why this is a problem and how we can fix it more robustly.
Activity
andys8 commentedon Feb 3, 2023
It's noteworthy that there is an open PR mentioning improvements of the landing page. There is a chance this PR would solve the demonstrated issue, but it has to be tested to know if this is the case or not.
#242
tomjaguarpaw commentedon Feb 3, 2023
Interesting, thanks. I'll investigate that fix.
tomjaguarpaw commentedon Feb 3, 2023
As far as i can tell #242 seems to make things worse! I think the cause is the
>>
on the right hand side of the Testimonials scroller.tomjaguarpaw commentedon Feb 3, 2023
Yeah, #242 does make things worse, because it forces the "Haskell logo, Haskell, An advanced, purely functional programming language" block to be on the same horizontal level as "Declarative, statically typed code, primes code, Get Started" block, making the screen wider. The status quo is that on narrow screens the first block appears above the second.
andys8 commentedon Feb 3, 2023
How would you suggest dealing with this issue? Fixing the current version independently of #242 and making sure that #242 only gets merged if it doesn't make it worse / break it again? Or work on #242 directly?
tomjaguarpaw commentedon Feb 3, 2023
This issue seems to be independent of #242 so I suggest just finding a fix that addresses the reason that the
>>
falls off the screen.andys8 commentedon Feb 3, 2023
I wanted to start taking a look, but
buildAndWatch
ended up in:Is there an explanation or is this a reason to open an issue?
TikhonJelvis commentedon Feb 3, 2023
@andys8 That looks related to #29 :/. Could you try explicitly setting the locale before running the script?
I though that #236 should have fixed that, but apparently not. I'll need to take another look into why this is a problem and how we can fix it more robustly.