diff --git a/src/corePlugins.js b/src/corePlugins.js index 8f274153879e..812295594f3d 100644 --- a/src/corePlugins.js +++ b/src/corePlugins.js @@ -1329,6 +1329,8 @@ export let corePlugins = { '.items-end': { 'align-items': 'flex-end' }, '.items-center': { 'align-items': 'center' }, '.items-baseline': { 'align-items': 'baseline' }, + '.items-first-baseline': { 'align-items': 'first baseline' }, + '.items-last-baseline': { 'align-items': 'last baseline' }, '.items-stretch': { 'align-items': 'stretch' }, }) }, diff --git a/tests/raw-content.test.css b/tests/raw-content.test.css index a6be31fd0aec..3e62f3aa39dc 100644 --- a/tests/raw-content.test.css +++ b/tests/raw-content.test.css @@ -312,6 +312,12 @@ .items-start { align-items: flex-start; } +.items-first-baseline { + align-items: first baseline; +} +.items-last-baseline { + align-items: last baseline; +} .justify-center { justify-content: center; } @@ -525,7 +531,7 @@ } .font-sans { font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, - Segoe UI Symbol, Noto Color Emoji; + Segoe UI Symbol, Noto Color Emoji; } .text-2xl { font-size: 1.5rem; diff --git a/tests/raw-content.test.js b/tests/raw-content.test.js index a55e373fb21e..3bc3d8c11e95 100644 --- a/tests/raw-content.test.js +++ b/tests/raw-content.test.js @@ -10,6 +10,8 @@ it('raw content', () => {
+ +