Skip to content
This repository was archived by the owner on Jun 20, 2022. It is now read-only.

Commit d4fb2cd

Browse files
authored
fix(Grid): fix Row gutter, default to 8px instead of 16px (#49)
1 parent eef5b6e commit d4fb2cd

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

β€Žpackages/shared/core/Row.jsβ€Ž

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ const Row = createComponent(() => ({
2828
children: PropTypes.node,
2929
gutter: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
3030
},
31-
defaultProps: {
32-
gutter: 15,
33-
},
3431
}))
3532

3633
export default Row

β€Žpackages/shared/core/theme.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ export const controlFocusBoxShadow = p => color =>
209209
// Grid
210210

211211
export const gridColumns = 12
212-
export const gridGutter = 16
212+
export const gridGutter = 8
213213

214214
export const gridMaxWidths = {
215215
sm: '540px',

0 commit comments

Comments
Β (0)