33 lines
552 B
SCSS
33 lines
552 B
SCSS
@import "variables";
|
|
|
|
vn-avatar {
|
|
display: block;
|
|
border-radius: 50%;
|
|
overflow: hidden;
|
|
height: 38px;
|
|
width: 38px;
|
|
font-size: 22px;
|
|
background-color: $color-main;
|
|
position: relative;
|
|
|
|
& > * {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
& > .letter {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
& > .image {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
|
|
& > img {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
}
|
|
}
|