diff --git a/__tests__/fixtures/tailwind-output.css b/__tests__/fixtures/tailwind-output.css index 4415f8514..f32405ed0 100644 --- a/__tests__/fixtures/tailwind-output.css +++ b/__tests__/fixtures/tailwind-output.css @@ -530,6 +530,18 @@ fieldset { border-color: #dae4e9; } +/** + * Temporary reset for a change introduced in Chrome 62 but now reverted. + * + * We can remove this when the reversion is in a normal Chrome release. + */ +button, +[type="button"], +[type="reset"], +[type="submit"] { + border-radius: 0; +} + textarea { resize: vertical; } diff --git a/css/preflight.css b/css/preflight.css index 11e044c17..2730fde63 100644 --- a/css/preflight.css +++ b/css/preflight.css @@ -530,6 +530,18 @@ fieldset { border-color: config('borderColors.default', currentColor); } +/** + * Temporary reset for a change introduced in Chrome 62 but now reverted. + * + * We can remove this when the reversion is in a normal Chrome release. + */ +button, +[type="button"], +[type="reset"], +[type="submit"] { + border-radius: 0; +} + textarea { resize: vertical; } img { max-width: 100%; }