21 lines
304 B
CSS
21 lines
304 B
CSS
.avatar .edit,
|
|
.banner .edit {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: var(--bg-color);
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
border-radius: 100%;
|
|
}
|
|
|
|
.avatar .edit.new {
|
|
opacity: 0.5;
|
|
}
|
|
|
|
.avatar .edit:hover {
|
|
opacity: 0.5;
|
|
}
|