diff --git a/src/components/App/App.scss b/src/components/App/App.scss index 7f48e9a..9c6fb85 100644 --- a/src/components/App/App.scss +++ b/src/components/App/App.scss @@ -13,6 +13,9 @@ body { padding-bottom: 20px; border-bottom: 1px #dadada solid; min-height: 500px; /* 690 */ + @media (max-width: 768px) { + min-height: auto; + } } .container { margin: 0 auto; diff --git a/src/components/Footer/Footer.jsx b/src/components/Footer/Footer.jsx index 25ce71c..a5fc742 100644 --- a/src/components/Footer/Footer.jsx +++ b/src/components/Footer/Footer.jsx @@ -12,19 +12,19 @@ class Footer extends Component { If you are a beginner, you might want to start by choosing the first two groups (a -> ko) of hiragana. Once you manage to pass the last stage, add in one or two more groups. Aim for the perfection - you want to be answering quickly.

Have fun!

-

Update - 18 March 2017

-

* Bugfix: Fixed unintended behavior when same group was selected from both hiragana & katakana. Thanks for the bug report!

+

Updates

+

+ 24 March 2017 · Enhancement: Improved mobile browser usability with reduced margins.
+ 18 March 2017 · Bugfix: Fixed unintended behavior when same group was selected from both hiragana & katakana. Thanks for the bug report! +

Coders needed! This app is open source, but I'm currently the only one working on it. If you'd like to practice your React.js skills, feel free to check the issues and fork it on GitHub!

- -

Launch - 14 Aug 2016

- Here we are finally with a new version of Kana Quiz. + 14 Aug 2016 · Launch: Here we are finally with a new version of Kana Quiz. This app doesn't require flash anymore, and should work great with mobile phones and tablets. Note that this is still a beta version, so there may be a few quirks. I would love to hear - your thoughts, so if you'd like, be sure to shoot me some feedback using {' '} - this form! {' '} - If you for some reason want to use the old version, it's still available here. + your thoughts, so if you'd like, be sure to shoot me some feedback! {' '} + If you for some reason want to use the old version, it's still available here.

© Antti Pilto 2016
diff --git a/src/components/Game/Question.scss b/src/components/Game/Question.scss index 4c51f2d..825c0f9 100644 --- a/src/components/Game/Question.scss +++ b/src/components/Game/Question.scss @@ -20,6 +20,9 @@ padding: 8px; margin: 30px auto 28px; border-radius: 3px; + @media (max-width: 768px) { + margin: 0px auto 0px; + } } .size-up { font-size: 1.1em; @@ -59,6 +62,9 @@ min-width: 90px; font-size: 2em; margin: 30px 0 60px; + @media (max-width: 768px) { + margin: 0px 0 15px; + } } .answer-input, .answer-input:focus { outline: none; @@ -69,6 +75,9 @@ background: none; border: none; border-bottom: solid 1px #aaa; + @media (max-width: 768px) { + margin: 0px 0 25px; + } } .no-hover { /* disables hover effect on touch screens */ diff --git a/src/components/Game/ShowStage.scss b/src/components/Game/ShowStage.scss index e9224b3..d5cf8c9 100644 --- a/src/components/Game/ShowStage.scss +++ b/src/components/Game/ShowStage.scss @@ -9,6 +9,10 @@ h3 { margin-top: 30px; } + @media (max-width: 768px) { + margin-top: 100px; + margin-bottom: 100px; + } } .show-end { margin-top: 80px;