Make CSS for Twitch button more consistent.

master
Icedream 2021-01-03 18:53:14 +01:00
parent 772ab12016
commit 94344e918e
1 changed files with 10 additions and 4 deletions

View File

@ -11,9 +11,15 @@ html[data-toggled-dark='true'] * {
}
html {
.btn.btn-twitch {
border-color: purple;
background-color: purple;
color: white;
$twitch-color: rgb(145, 71, 255);
.btn {
&.btn-twitch {
@include button-variant($twitch-color, $twitch-color);
}
&.btn-outline-twitch {
@include button-outline-variant($twitch-color);
}
}
}