add default button styles
This commit is contained in:
parent
f54a4edf20
commit
38585b6a40
|
@ -58,3 +58,9 @@ a,
|
||||||
button {
|
button {
|
||||||
@include font-link();
|
@include font-link();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
border-radius: $btn-border-radius;
|
||||||
|
border-width: $btn-border-width;
|
||||||
|
border-color: $btn-border-color;
|
||||||
|
}
|
||||||
|
|
|
@ -14,6 +14,10 @@ $bp-max-xl: 1199.98px;
|
||||||
|
|
||||||
$column-max-width: 1140px;
|
$column-max-width: 1140px;
|
||||||
|
|
||||||
|
$btn-border-radius: 12px;
|
||||||
|
$btn-border-width: 0;
|
||||||
|
$btn-border-color: currentColor;
|
||||||
|
|
||||||
$color-body: $color__neutral-700;
|
$color-body: $color__neutral-700;
|
||||||
$background-color: $color__white;
|
$background-color: $color__white;
|
||||||
|
|
||||||
|
|
|
@ -27,3 +27,11 @@
|
||||||
.h6 {
|
.h6 {
|
||||||
@extend h6;
|
@extend h6;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.button {
|
||||||
|
@extend button;
|
||||||
|
}
|
||||||
|
|
||||||
|
.a {
|
||||||
|
@extend a;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue