mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
Adding support for baseline in placeItems & alignContent utility (#9507)
* Update corePlugins.js * Update corePlugins.js * Update changelog Co-authored-by: Jordan Pittman <jordan@cryptica.me>
This commit is contained in:
parent
c5ca373cbd
commit
1824c459df
@ -23,6 +23,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||
- 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))
|
||||
- Added 'place-items-baseline' utility ([#9507](https://github.com/tailwindlabs/tailwindcss/pull/9507))
|
||||
- Added 'content-baseline' utility ([#9507](https://github.com/tailwindlabs/tailwindcss/pull/9507))
|
||||
|
||||
### Fixed
|
||||
|
||||
|
||||
@ -990,6 +990,7 @@ export let corePlugins = {
|
||||
'.place-items-start': { 'place-items': 'start' },
|
||||
'.place-items-end': { 'place-items': 'end' },
|
||||
'.place-items-center': { 'place-items': 'center' },
|
||||
'.place-items-baseline': { 'place-items': 'baseline' },
|
||||
'.place-items-stretch': { 'place-items': 'stretch' },
|
||||
})
|
||||
},
|
||||
@ -1002,6 +1003,7 @@ export let corePlugins = {
|
||||
'.content-between': { 'align-content': 'space-between' },
|
||||
'.content-around': { 'align-content': 'space-around' },
|
||||
'.content-evenly': { 'align-content': 'space-evenly' },
|
||||
'.content-baseline': { 'align-content': 'baseline' },
|
||||
})
|
||||
},
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user