Update font weights for buttons.

This commit is contained in:
bmauger 2022-02-16 15:21:17 -05:00
parent f32439972d
commit 6de922747c

View file

@ -56,6 +56,7 @@ export default {
border-radius: $border-radius-lg; border-radius: $border-radius-lg;
color: $white; color: $white;
justify-content: center; justify-content: center;
font-weight: 500;
&:hover { &:hover {
background: linear-gradient( background: linear-gradient(
270deg, 270deg,
@ -83,6 +84,7 @@ export default {
$gray-200 100% $gray-200 100%
) !important; ) !important;
color: $gray-600 !important; color: $gray-600 !important;
font-weight: 400;
height: 48px; height: 48px;
border: none; border: none;
border-radius: $border-radius-lg; border-radius: $border-radius-lg;
@ -103,6 +105,7 @@ export default {
border: 1px solid $blue; border: 1px solid $blue;
border-radius: $border-radius-lg; border-radius: $border-radius-lg;
color: $blue; color: $blue;
font-weight: 500;
transition: all 150ms linear; transition: all 150ms linear;
&:hover { &:hover {
color: $white; color: $white;
@ -119,6 +122,7 @@ export default {
&:disabled { &:disabled {
background: transparent; background: transparent;
color: $gray-550 !important; color: $gray-550 !important;
font-weight: 400;
height: 48px; height: 48px;
border: 1px solid $gray-550; border: 1px solid $gray-550;
border-radius: $border-radius-lg; border-radius: $border-radius-lg;