Skip to content

Commit 1d0fa85

Browse files
authored
fix: add missing space-evenly alignment for grid rows (#7579)
1 parent 4318147 commit 1d0fa85

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

components/grid/style/index.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,10 @@ const genGridRowStyle: GenerateStyle<GridRowToken> = (token): CSSObject => {
5050
justifyContent: 'space-around',
5151
},
5252

53+
'&-space-evenly ': {
54+
justifyContent: 'space-evenly',
55+
},
56+
5357
// Align at the top
5458
'&-top': {
5559
alignItems: 'flex-start',

0 commit comments

Comments
 (0)