11 lines
217 B
SCSS
11 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;
|
||
|
}
|