Skip to content

Commit

Permalink
Fix typescript transpilation
Browse files Browse the repository at this point in the history
  • Loading branch information
nrkroeker authored and oliviertassinari committed Sep 19, 2019
1 parent 69e0078 commit 40184c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/src/pages/components/dividers/VerticalDividers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ const useStyles = makeStyles(theme => ({
},
},
divider: {
height: 32,
width: 1,
margin: 4,
height: 'auto',
alignSelf: 'stretch',
margin: theme.spacing(1, 0.5)
},
}));

Expand All @@ -36,7 +36,7 @@ export default function ToggleButtons() {
<FormatAlignLeftIcon />
<FormatAlignCenterIcon />
<FormatAlignRightIcon />
<Divider orientation="horizontal" className={classes.divider} />
<Divider orientation="vertical" className={classes.divider} />
<FormatBoldIcon />
<FormatItalicIcon />
<FormatUnderlinedIcon />
Expand Down

0 comments on commit 40184c8

Please sign in to comment.