fix: add missing space-evenly alignment for grid rows (#7579)
parent
4318147fc6
commit
1d0fa8533a
|
@ -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',
|
||||
|
|
Loading…
Reference in New Issue