Skip to content

Commit

Permalink
[EuiFlexGroup][EuiFlexGrid] Fix m gutter size spacing (#7251)
Browse files Browse the repository at this point in the history
  • Loading branch information
cee-chen authored Oct 4, 2023
1 parent 83e3d4e commit 266d620
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/flex/flex_grid.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const euiFlexGridStyles = (
gap: ${euiTheme.size.s};
`,
m: css`
gap: ${euiTheme.size.m};
gap: ${euiTheme.size.base};
`,
l: css`
gap: ${euiTheme.size.l};
Expand Down
2 changes: 1 addition & 1 deletion src/components/flex/flex_group.styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const euiFlexGroupStyles = (euiThemeContext: UseEuiTheme) => {
gap: ${euiTheme.size.s};
`,
m: css`
gap: ${euiTheme.size.m};
gap: ${euiTheme.size.base};
`,
l: css`
gap: ${euiTheme.size.l};
Expand Down
3 changes: 3 additions & 0 deletions upcoming_changelogs/7251.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
**Bug fixes**

- Fixed `EuiFlexGroup` and `EuiFlexGrid's `m` gutter size

0 comments on commit 266d620

Please sign in to comment.