Skip to content

Commit

Permalink
Reset letter spacing for form elements (#13150)
Browse files Browse the repository at this point in the history
* Reset letter spacing for form elements

Some browsers, such as Chrome, set `letter-spacing: normal` for form elements. For consistency with the other styles, it should be set to `inherit` by Preflight.

* wip

* Update changelog

---------

Co-authored-by: Jordan Pittman <[email protected]>
  • Loading branch information
Stadly and thecrypticace authored Mar 22, 2024
1 parent b10b431 commit ea90d3a
Show file tree
Hide file tree
Showing 3 changed files with 214 additions and 211 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Ensure dashes are allowed in variant modifiers ([#13303](https://github.com/tailwindlabs/tailwindcss/pull/13303))
- Fix crash showing completions in Intellisense when using a custom separator ([#13306](https://github.com/tailwindlabs/tailwindcss/pull/13306))
- Transpile `import.meta.url` in config files ([#13322](https://github.com/tailwindlabs/tailwindcss/pull/13322))
- Reset letter spacing for form elements ([#13150](https://github.com/tailwindlabs/tailwindcss/pull/13150))

## [3.4.1] - 2024-01-05

Expand Down
1 change: 1 addition & 0 deletions src/css/preflight.css
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ textarea {
font-size: 100%; /* 1 */
font-weight: inherit; /* 1 */
line-height: inherit; /* 1 */
letter-spacing: inherit; /* 1 */
color: inherit; /* 1 */
margin: 0; /* 2 */
padding: 0; /* 3 */
Expand Down
Loading

0 comments on commit ea90d3a

Please sign in to comment.