18 lines
292 B
SCSS
18 lines
292 B
SCSS
.user-avatar {
|
|
&__img {
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 50%;
|
|
cursor: pointer;
|
|
|
|
&.noavatar {
|
|
background: var(--purple-8-bg);
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
input[type='file'] {
|
|
display: none;
|
|
}
|
|
}
|