From 1d0fa8533a2a9c5e7ea15a3847a21653b20169e9 Mon Sep 17 00:00:00 2001 From: Aaron-zon <1640485761@qq.com> Date: Tue, 4 Jun 2024 23:26:03 +0800 Subject: [PATCH] fix: add missing space-evenly alignment for grid rows (#7579) --- components/grid/style/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/components/grid/style/index.ts b/components/grid/style/index.ts index 137b50251f..923e01837f 100644 --- a/components/grid/style/index.ts +++ b/components/grid/style/index.ts @@ -50,6 +50,10 @@ const genGridRowStyle: GenerateStyle = (token): CSSObject => { justifyContent: 'space-around', }, + '&-space-evenly ': { + justifyContent: 'space-evenly', + }, + // Align at the top '&-top': { alignItems: 'flex-start',