返回 AiToEarn
avatarPlat.module.scss
根目录 / project / aitoearn-web / src / components / common / AvatarPlat / avatarPlat.module.scss
1 .avatarPlat {
2 position: relative;
3 display: inline-block;
4 flex-shrink: 0;
5 justify-content: center;
6 & > img {
7 position: absolute;
8 bottom: 10%;
9 right: -10%;
10 transform: translate(-10%, 20%);
11 border-radius: 50%;
12 }
13
14 &.disabled {
15 filter: grayscale(100%);
16 opacity: 0.6;
17
18 &:hover {
19 filter: grayscale(100%);
20 opacity: 0.6;
21 }
22 }
23 }
24
24 lines Plain Text