10 lines
217 B
SCSS
10 lines
217 B
SCSS
@mixin shape-style($size) {
|
|
@include borders();
|
|
@include border-radius($btn-radius);
|
|
|
|
background-color:transparent;
|
|
}
|
|
|
|
@mixin colorize-shape($background-color) {
|
|
background-color: $background-color;
|
|
}
|