Profile editor

This commit is contained in:
2022-12-28 14:51:33 +00:00
parent aadc58a104
commit 00b0cecf6c
9 changed files with 140 additions and 26 deletions

View File

@ -7,11 +7,23 @@
margin-left: 10px;
}
.profile img.avatar {
.profile .avatar {
width: 256px;
height: 256px;
background-size: contain;
cursor: pointer;
}
.profile img.avatar:hover {
cursor: pointer;
.profile .avatar .edit {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
opacity: 0;
background-color: black;
}
.profile .avatar .edit:hover {
opacity: 0.5;
}