user3166588
user3166588

Reputation:

How to remove default iOS form styles

I recently launched a landing page for a new website. But on iOS, the inputs fields are ignoring the padding of the container and the subscribe button looks completely different. How can I fix this?

View the landing page: signup.sketchtricks.com

Screenshot on iOS: cl.ly/image/0y0P0m0J3a3X

Thank you for your help, I really appreciate it!

Upvotes: 0

Views: 2364

Answers (1)

user2968831
user2968831

Reputation:

Add...

-webkit-appearance: none;
border-radius: 0;

...to the affected selectors in your css.

Upvotes: 3

Related Questions