Skip to content

Commit

Permalink
Fix btn colors
Browse files Browse the repository at this point in the history
  • Loading branch information
petrzpav committed Nov 21, 2024
1 parent 9c080cd commit fc5adae
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions resources/sass/_btn.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,34 +17,34 @@
@include button-variant(
$white,
$white,
var(--bs-primary),
var($blue),
darken($white, 10%),
darken($white, 10%),
var(--bs-primary)
var($blue)
);

&.btn-primary {
color: var(--bs-primary);
color: var($blue);
}

&.btn-secondary {
color: var(--bs-secondary);
color: var($gray-600);
}

&.btn-success {
color: var(--bs-success);
color: var($green);
}

&.btn-danger {
color: var(--bs-danger);
color: var($red);
}

&.btn-warning {
color: var(--bs-warning);
color: var($yellow);
}

&.btn-info {
color: var(--bs-info);
color: var($cyan);
}
}

Expand Down

0 comments on commit fc5adae

Please sign in to comment.