diff --git a/src/blocks/form/styles/style.scss b/src/blocks/form/styles/style.scss index b6bf6092c33..fd5e2342a8d 100644 --- a/src/blocks/form/styles/style.scss +++ b/src/blocks/form/styles/style.scss @@ -44,10 +44,23 @@ } } + // Fallback padding and height for form inputs + input[type="text"], + input[type="email"], + input[type="tel"], + input[type="url"], + input[type="date"], + input[type="number"], + select { + min-height: 2.5rem; + padding: 0.5rem 0.75rem; + } + textarea { float: none; height: 200px; margin: 0 0 1.15rem 0; + padding: 0.5rem 0.75rem; resize: vertical; width: 100%; }