kgroad-frontend2/src/features/ProfileAvatar/ProfileAvatar.scss
2024-02-13 19:18:07 +06:00

38 lines
610 B
SCSS

.profile-avatar {
margin-bottom: 25px;
position: relative;
width: 135px;
height: 135px;
&__image {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
}
input[type="file"] {
display: none;
}
label {
position: absolute;
bottom: 0;
right: 0;
width: 50px;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.1);
background: rgb(255, 255, 255);
border-radius: 50%;
cursor: pointer;
img {
width: 22px;
height: 22px;
}
}
}