Skip to content

Commit

Permalink
fix #1619 lowercase Margin
Browse files Browse the repository at this point in the history
  • Loading branch information
kmcb777 committed Jun 20, 2019
1 parent 83f22e1 commit cdcbb30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/mjml-button/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ export default class MjButton extends BodyComponent {
'font-style': this.getAttribute('font-style'),
'font-weight': this.getAttribute('font-weight'),
'line-height': this.getAttribute('line-height'),
Margin: '0',
margin: '0',
'text-decoration': this.getAttribute('text-decoration'),
'text-transform': this.getAttribute('text-transform'),
padding: this.getAttribute('inner-padding'),
Expand Down
2 changes: 1 addition & 1 deletion packages/mjml-section/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default class MjSection extends BodyComponent {
},
div: {
...(fullWidth ? {} : background),
Margin: '0px auto',
margin: '0px auto',
'border-radius': this.getAttribute('border-radius'),
'max-width': containerWidth,
},
Expand Down

0 comments on commit cdcbb30

Please sign in to comment.