Skip to content

Commit

Permalink
fix(card): fix header height
Browse files Browse the repository at this point in the history
  • Loading branch information
zouxuoz authored and ej9x committed Aug 17, 2018
1 parent 89197cc commit b6526a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/atoms/Card/CardHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const cardHeaderTheme = createTheme(name, (colors: *): * => ({
cardHeader: {
borderBottom: `1px solid ${colors.PRIMARY_BORDER_COLOR}`,
display: 'flex',
height: '6rem',
height: '7rem',
alignItems: 'center',
position: 'relative',
},
Expand Down
6 changes: 3 additions & 3 deletions storybook/__tests__/__snapshots__/storyshots.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -1371,7 +1371,7 @@ exports[`Storyshots ATOMS/Card default 1`] = `
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
height: 6rem;
height: 7rem;
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
Expand Down Expand Up @@ -1445,7 +1445,7 @@ exports[`Storyshots ATOMS/Card with custom offsets 1`] = `
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
height: 6rem;
height: 7rem;
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
Expand Down Expand Up @@ -1519,7 +1519,7 @@ exports[`Storyshots ATOMS/Card without footer 1`] = `
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
height: 6rem;
height: 7rem;
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
Expand Down

0 comments on commit b6526a7

Please sign in to comment.