diff options
author | William Carroll <wpcarro@gmail.com> | 2020-04-18T19·20+0100 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-04-18T19·23+0100 |
commit | c6132ab1d6df6193d130d59fdaf9eef3e94d57b8 (patch) | |
tree | 75c3363bd176beb898283479a271177a16fed1ac /website | |
parent | 9e855f7427841e40683b4b604df0a426d14f82ea (diff) |
Remove horizontal padding
Google Chrome's device preview doesn't resemble what I see when I use my phone to visit this page.
Diffstat (limited to 'website')
-rw-r--r-- | website/sandbox/learnpianochords/src/Overview.elm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/website/sandbox/learnpianochords/src/Overview.elm b/website/sandbox/learnpianochords/src/Overview.elm index 2fa3b3cb14c6..efcf5f5e1e0a 100644 --- a/website/sandbox/learnpianochords/src/Overview.elm +++ b/website/sandbox/learnpianochords/src/Overview.elm @@ -49,7 +49,7 @@ numberedList items = render : State.Model -> Html State.Msg render model = - div [ [ "container", "mx-auto", "px-20" ] |> UI.tw |> class ] + div [ [ "container", "mx-auto" ] |> UI.tw |> class ] [ header1 "Welcome to LearnPianoChords.app!" , paragraph """ Learn Piano Chords helps piano players master chords. @@ -92,7 +92,7 @@ render model = """ ] ] - , div [ [ "text-center", "pt-20" ] |> UI.tw |> class ] + , div [ [ "text-center", "py-20" ] |> UI.tw |> class ] [ UI.simpleButton { label = "Let's get started" , handleClick = State.SetView State.Preferences |