mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
19 lines
348 B
SCSS
19 lines
348 B
SCSS
@import "src/styles/variables";
|
|
|
|
.avatar {
|
|
@include outer_shadow;
|
|
|
|
width: $comment_height;
|
|
height: $comment_height;
|
|
background-color: transparentize(black, 0.9);
|
|
flex-shrink: 0;
|
|
overflow: hidden;
|
|
border-radius: $radius;
|
|
background-position: center;
|
|
background-size: cover;
|
|
cursor: pointer;
|
|
|
|
img {
|
|
object-fit: cover;
|
|
}
|
|
}
|