Skip to content

Commit

Permalink
Update product button theme color (Fixes #380) (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgibson authored and craigcook committed May 7, 2019
1 parent 685229b commit 9d9f5bd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# Features

* **css:** Update product button theme color (#380)
* **css:** (breaking) Implement Updated Font Stacks (#342)

# 6.0.1
Expand Down
10 changes: 5 additions & 5 deletions src/assets/sass/protocol/components/_button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -92,14 +92,14 @@ a.mzp-c-button.mzp-t-dark {

.mzp-c-button.mzp-t-product,
a.mzp-c-button.mzp-t-product {
background-color: $color-blue-60;
background-color: $color-blue-50;
border-color: transparent;
color: $color-white;

&:focus,
&:hover {
@include transform(none);
background-color: $color-blue-70;
background-color: $color-blue-60;
box-shadow: none;
color: $color-white;
}
Expand All @@ -118,13 +118,13 @@ a.mzp-c-button.mzp-t-product {
.mzp-c-button.mzp-t-product.mzp-t-secondary,
a.mzp-c-button.mzp-t-product.mzp-t-secondary {
background-color: transparent;
border-color: $color-blue-60;
color: $color-blue-60;
border-color: $color-blue-50;
color: $color-blue-50;

&:focus,
&:hover {
@include transform(none);
background-color: $color-blue-70;
background-color: $color-blue-60;
border-color: transparent;
box-shadow: none;
color: $color-white;
Expand Down

0 comments on commit 9d9f5bd

Please sign in to comment.