Skip to content

Commit

Permalink
Add new place-items-baseline utility for place-items: baseline, Add n…
Browse files Browse the repository at this point in the history
…ew content-baseline utility for align-content: baseline

tailwindlabs/tailwindcss#9507
  • Loading branch information
dcastil committed Oct 19, 2022
1 parent be831d7 commit da05ca4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/default-config.ts
Expand Up @@ -409,7 +409,7 @@ export function getDefaultConfig() {
* Align Content
* @see https://tailwindcss.com/docs/align-content
*/
'align-content': [{ content: getAlign() }],
'align-content': [{ content: [...getAlign(), 'baseline'] }],
/**
* Align Items
* @see https://tailwindcss.com/docs/align-items
Expand All @@ -429,7 +429,7 @@ export function getDefaultConfig() {
* Place Items
* @see https://tailwindcss.com/docs/place-items
*/
'place-items': [{ 'place-items': ['start', 'end', 'center', 'stretch'] }],
'place-items': [{ 'place-items': ['start', 'end', 'center', 'baseline', 'stretch'] }],
/**
* Place Self
* @see https://tailwindcss.com/docs/place-self
Expand Down

0 comments on commit da05ca4

Please sign in to comment.