Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change button background to background-color #2930

Merged
merged 1 commit into from Mar 11, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/stylesheets/elements/_buttons.scss
Expand Up @@ -103,7 +103,7 @@ $button-stroke: inset 0 0 0 units($theme-button-stroke-width);
}

&.usa-button--inverse {
background: transparent;
background-color: transparent;
box-shadow: $button-stroke color('base-lighter');
color: color('base-lighter');

Expand All @@ -113,14 +113,14 @@ $button-stroke: inset 0 0 0 units($theme-button-stroke-width);

&:hover,
&.usa-button--hover {
background: transparent;
background-color: transparent;
box-shadow: $button-stroke color('base-lightest');
color: color('base-lightest');
}

&:active,
&.usa-button--active {
background: transparent;
background-color: transparent;
box-shadow: $button-stroke color('white');
color: color('white');
}
Expand Down