Skip to content

Commit

Permalink
fix(chip): default chip is height 32; fix deletable chip colors
Browse files Browse the repository at this point in the history
Signed-off-by: Machiko Yasuda <[email protected]>
  • Loading branch information
Machiko Yasuda committed Aug 22, 2019
1 parent 82ca0f8 commit f67c1a8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package/src/theme/defaultTheme.js
Original file line number Diff line number Diff line change
Expand Up @@ -296,16 +296,16 @@ export const rawMuiTheme = {
root: {
fontSize: defaultFontSize * 0.875,
letterSpacing: captionLetterSpacing,
height: 30
height: 32
},
deletable: {
"&:hover": {
cursor: "pointer"
}
},
deletableColorPrimary: {
"backgroundColor": colors.black02,
"border": `1px solid ${colors.black30}`,
"backgroundColor": colors.black05,
"border": `1px solid ${colors.coolGrey}`,
"color": colors.coolGrey500,
"&:hover, &:focus, &:active": {
backgroundColor: colors.black05
Expand Down

0 comments on commit f67c1a8

Please sign in to comment.