8 lines
189 B
SCSS
Vendored
8 lines
189 B
SCSS
Vendored
@mixin avatar ($value, $radius: 0) {
|
|
height: $value + px;
|
|
width: $value + px;
|
|
min-width: $value + px;
|
|
@if $enable-rounded == true {
|
|
border-radius: $radius;
|
|
}
|
|
} |