tvl-depot/website/sandbox/learnpianochords/src/Responsive.elm
William Carroll 2fe6d7a10c Responsively size UI
TL;DR: scale down UI for non-mobile devices.

I pulled the screen resolution for my phone, the Google Pixel 4, off of the
internet. I created a device profile in Chrome to develop this application
specifically for my phone. To my surprise, when I opened the app on my phone,
many of elements that looked good in Google Chrome, looked askew on my phone. I
needed to troubleshoot.

Here's how I did that:
I used Tailwind to responsively color the bg for each breakpoint to see if my
device was sm, md, lg, xl (according to Tailwind's breakpoint
terminology). After reading Tailwind's documentation and comparing their
breakpoints with my Pixel 4's width (i.e. 1080px), I figured that my device
would be lg. It's not; it's md, which I confirmed by using ngrok to load
localhost:8000 on my phone and see that the background-color was
"md:bg-green-600".

I'm still unsure why my device is not lg, but knowing that my device was md
was enough to fix many of the styling issues. My current theory is that while
my screen's resolution is 1080 wide, the pixel density affects the media query
for the breakpoint.
2020-04-19 13:05:55 +01:00

19 lines
533 B
Elm

module Responsive exposing (..)
{-| Returns a string containing all of the Tailwind selectors we use to size
h2-sized elements across various devices. -}
h1 : String
h1 =
"text-6xl lg:text-4xl"
{-| Returns a string containing all of the Tailwind selectors we use to size
h2-sized elements across various devices. -}
h2 : String
h2 =
"text-5xl lg:text-3xl"
{-| Returns a string containing all of the Tailwind selectors we use to size
h3-sized elements across various devices. -}
h3 : String
h3 =
"text-4xl lg:text-2xl"