Skip to content

Commit

Permalink
fix: add missing space-evenly alignment for grid rows (vueComponent#7579
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Aaron-zon authored Jun 4, 2024
1 parent 4318147 commit 1d0fa85
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions components/grid/style/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ const genGridRowStyle: GenerateStyle<GridRowToken> = (token): CSSObject => {
justifyContent: 'space-around',
},

'&-space-evenly ': {
justifyContent: 'space-evenly',
},

// Align at the top
'&-top': {
alignItems: 'flex-start',
Expand Down

0 comments on commit 1d0fa85

Please sign in to comment.