Skip to content

Commit

Permalink
Adding support for baseline in placeContent utility (#9498)
Browse files Browse the repository at this point in the history
* Update corePlugins.js

* Move class

* Update changelog

Co-authored-by: Jordan Pittman <jordan@cryptica.me>
  • Loading branch information
Dawood Khan Masood and thecrypticace committed Oct 7, 2022
1 parent 56d9c43 commit c5ca373
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Support `sort` function in `matchVariant` ([#9423](https://github.com/tailwindlabs/tailwindcss/pull/9423))
- Implement the `supports` variant ([#9453](https://github.com/tailwindlabs/tailwindcss/pull/9453))
- Add experimental `label`s for variants ([#9456](https://github.com/tailwindlabs/tailwindcss/pull/9456))
- Added 'place-content-baseline' utility ([#9498](https://github.com/tailwindlabs/tailwindcss/pull/9498))

### Fixed

Expand Down
1 change: 1 addition & 0 deletions src/corePlugins.js
Expand Up @@ -980,6 +980,7 @@ export let corePlugins = {
'.place-content-between': { 'place-content': 'space-between' },
'.place-content-around': { 'place-content': 'space-around' },
'.place-content-evenly': { 'place-content': 'space-evenly' },
'.place-content-baseline': { 'place-content': 'baseline' },
'.place-content-stretch': { 'place-content': 'stretch' },
})
},
Expand Down

0 comments on commit c5ca373

Please sign in to comment.