52 lines
955 B
SCSS

/* =========== settings css ============== */
.settings-card-1 {
.profile-info {
.profile-image {
max-width: 75px;
width: 100%;
height: 75px;
border-radius: 50%;
margin-right: 20px;
position: relative;
z-index: 1;
img {
width: 100%;
border-radius: 50%;
}
.update-image {
position: absolute;
bottom: 0;
right: 0;
width: 30px;
height: 30px;
background: $light;
border: 2px solid $white;
@include flex-center;
border-radius: 50%;
cursor: pointer;
z-index: 99;
&:hover {
opacity: 0.9;
}
input {
opacity: 0;
position: absolute;
width: 100%;
height: 100%;
cursor: pointer;
z-index: 99;
}
label {
cursor: pointer;
z-index: 99;
}
}
}
}
}