Skip to content

Commit

Permalink
Merge pull request #652 from CleverCloud/cc-button/set-default-backgr…
Browse files Browse the repository at this point in the history
…ound-color

fix(cc-button): set default background color
  • Loading branch information
florian-sanders-cc authored Dec 1, 2022
2 parents d6992e1 + ba6e9c1 commit e47bab5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/cc-button/cc-button.js
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,7 @@ export class CcButton extends LitElement {
min-height: 2em;
padding: 0 0.5em;
border: 1px solid #000;
background-color: var(--cc-color-bg-default, #fff);
border-radius: var(--cc-button-border-radius, 0.15em);
cursor: pointer;
font-weight: var(--cc-button-font-weight, bold);
Expand Down Expand Up @@ -342,7 +343,7 @@ export class CcButton extends LitElement {
}
.outlined {
background-color: transparent;
background-color: var(--cc-color-bg-default, #fff);
color: var(--btn-color);
}
Expand Down

0 comments on commit e47bab5

Please sign in to comment.