Skip to content

Commit

Permalink
chore(buttons): make outline button background transparent
Browse files Browse the repository at this point in the history
I was pairing with Sean over the `Banner` component and he pointed out that
the outline buttons have a white background when he intended for them to be
transparent. Currently, these buttons aren't being used anywhere, so I think
this is a safe change to make.
  • Loading branch information
Diedra authored and dierat committed Jul 14, 2021
1 parent be21528 commit 2ab9428
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/components/src/Clickable/Clickable.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,14 @@
}

.variantOutline {
background-color: var(--button-secondary-color);
background-color: transparent;
border-color: var(--button-primary-color);
color: var(--button-primary-color);


&:focus,
&.stateFocus {
background-color: var(--button-secondary-color);
background-color: transparent;
color: var(--button-primary-color);
}

Expand All @@ -165,7 +165,7 @@
}

&:disabled {
background-color: var(--button-secondary-color);
background-color: transparent;
color: var(--button-primary-color);
}
}
Expand Down

0 comments on commit 2ab9428

Please sign in to comment.