-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update index.html to better handle mobile devices #7
base: master
Are you sure you want to change the base?
Conversation
should fix size issues on mobile, I think
Hmm. Is there any way we can gate the size on the size of the screen in play? Or can we set the width in |
You can do a percentage but then it would scale really large on a desktop display. I think there's a max width property along with flex box in css thats probably our best bet. |
sets a min + max width for our input boxes
Most common mobile devices now look acceptable in Chrome's devtools viewer. There's probably a way to programmatically change the placeholder text size instead of just making the message a bit shorter, but my research/testing didn't turn anything up in a little while of Googling. |
That’s weird, it looked OK when I tried it. Although that’s a standard “but it works on my machine” response... I’ll try running it on my network and see if it looks better on the actual phone hardware. |
what's it look like in chrome dev tools as mobile device -> responsive for you (or a specific device)? |
Adds the
meta
element for viewport, which, I think, should help with the size issues on mobile.