10 lines
150 B
SCSS
10 lines
150 B
SCSS
.button {
|
|
@extend %button;
|
|
@include button-color($core-accent);
|
|
}
|
|
|
|
.button-secondary {
|
|
@extend %button;
|
|
@include button-color($secondary-link);
|
|
}
|