add default button styles

This commit is contained in:
Ray Elliott 2020-05-20 20:57:57 +01:00
parent f54a4edf20
commit 38585b6a40
3 changed files with 18 additions and 0 deletions

View File

@ -58,3 +58,9 @@ a,
button {
@include font-link();
}
button {
border-radius: $btn-border-radius;
border-width: $btn-border-width;
border-color: $btn-border-color;
}

View File

@ -14,6 +14,10 @@ $bp-max-xl: 1199.98px;
$column-max-width: 1140px;
$btn-border-radius: 12px;
$btn-border-width: 0;
$btn-border-color: currentColor;
$color-body: $color__neutral-700;
$background-color: $color__white;

View File

@ -27,3 +27,11 @@
.h6 {
@extend h6;
}
.button {
@extend button;
}
.a {
@extend a;
}