mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
Adding support for baseline in placeContent utility (#9498)
* Update corePlugins.js * Move class * Update changelog Co-authored-by: Jordan Pittman <jordan@cryptica.me>
This commit is contained in:
parent
56d9c43539
commit
c5ca373cbd
@ -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
|
||||
|
||||
|
||||
@ -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' },
|
||||
})
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user