Add affirmative and destructive secondary button variants

This commit is contained in:
Evan Hahn 2021-04-06 17:14:18 -05:00 committed by Josh Perez
parent 0555ef0a1e
commit 95482fbf31
6 changed files with 72 additions and 136 deletions

View file

@ -71,6 +71,14 @@
background: fade-out($background-color, 0.6);
}
&--primary {
color: $ultramarine-ui-light;
}
&--destructive {
color: $color-accent-red;
}
@include hover-and-active-states($background-color, $color-black);
}
@ -86,6 +94,14 @@
background: fade-out($background-color, 0.6);
}
&--primary {
color: $ultramarine-ui-dark;
}
&--destructive {
color: $color-accent-red;
}
@include hover-and-active-states($background-color, $color-white);
}
}