We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I'm using tuktuk with great success in a Rails app.
The one stumbling block so far has been with the iOS native styling of <input> submit buttons.
<input>
I found this fix in a zurb/foundation issue and it worked great for me:
input[type=submit].button { -webkit-appearance: none; }
For Rails users you can just add this to the end of your application.css file. Other users should just add it as late in the cascade as possible.
Seems this should already be in tuktuk somewhere?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm using tuktuk with great success in a Rails app.
The one stumbling block so far has been with the iOS native styling of
<input>
submit buttons.I found this fix in a zurb/foundation issue and it worked great for me:
input[type=submit].button {
-webkit-appearance: none;
}
For Rails users you can just add this to the end of your application.css file. Other users should just add it as late in the cascade as possible.
Seems this should already be in tuktuk somewhere?
The text was updated successfully, but these errors were encountered: