Skip to content

Commit

Permalink
Fix the color of the cart button in the app header. (#35)
Browse files Browse the repository at this point in the history
* Fix the color of the cart button in the app header.

* bump version
  • Loading branch information
markbrocato committed Feb 3, 2020
1 parent d1b0dce commit 9a7cd8e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-storefront",
"version": "7.2.2",
"version": "7.2.3",
"description": "Build and deploy e-commerce progressive web apps (PWAs) in record time.",
"module": "./index.js",
"license": "Apache-2.0",
Expand Down
8 changes: 4 additions & 4 deletions src/CartButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ export const styles = theme => ({
/**
* Styles applied to the [`Link`](/apiReference/link%2fLink) element used as the root.
*/
link: {
color: 'inherit',
},
link: {},
/**
* Styles passed through to the [`Badge`](https://material-ui.com/api/badge/#css) element's
* `badge` CSS rule.
Expand All @@ -25,7 +23,9 @@ export const styles = theme => ({
/**
* Styles applied to the button icon.
*/
icon: {},
icon: {
color: theme.palette.action.active,
},
})

const useStyles = makeStyles(styles, { name: 'RSFCartButton' })
Expand Down

0 comments on commit 9a7cd8e

Please sign in to comment.