diff --git a/src/__tests__/vendor/tailwind/flexbox-grid.test.tsx b/src/__tests__/vendor/tailwind/flexbox-grid.test.tsx index 50df19af..b73d6648 100644 --- a/src/__tests__/vendor/tailwind/flexbox-grid.test.tsx +++ b/src/__tests__/vendor/tailwind/flexbox-grid.test.tsx @@ -599,12 +599,12 @@ describe("Flexbox & Grid - Align Content", () => { }); test("content-evenly", async () => { expect(await renderCurrentTest()).toStrictEqual({ - props: {}, - warnings: { - values: { - "align-content": "space-evenly", - }, - }, + props: { style: { alignContent: "space-evenly" } }, + }); + }); + test("content-stretch", async () => { + expect(await renderCurrentTest()).toStrictEqual({ + props: { style: { alignContent: "stretch" } }, }); }); }); diff --git a/src/compiler/declarations.ts b/src/compiler/declarations.ts index 2ed3b745..66fb1df1 100644 --- a/src/compiler/declarations.ts +++ b/src/compiler/declarations.ts @@ -1828,6 +1828,7 @@ export function parseAlignContent( "stretch", "space-between", "space-around", + "space-evenly", ]); let value: string | undefined;