mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-17 03:04:27 +00:00
18 lines
311 B
SCSS
18 lines
311 B
SCSS
@charset "UTF-8";
|
|
|
|
// avatar mixins
|
|
// --------------------------------------------------
|
|
|
|
@mixin avatar-size($size) {
|
|
width: $size;
|
|
height: $size;
|
|
line-height: $size;
|
|
border-radius: 50%;
|
|
|
|
&-string {
|
|
position: absolute;
|
|
left: 50%;
|
|
transform-origin: 0 center;
|
|
}
|
|
}
|