Skip to content

Commit 9d40935

Browse files
committed
website: update team page.
1 parent 16f59fd commit 9d40935

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

website/src/pages/team/index.module.less

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@
3939
border-radius: 80px;
4040
margin: 20px;
4141
transition: all .3s;
42+
opacity: 0.75;
43+
filter: grayscale(100%);
44+
filter: gray;
4245
}
4346
span {
4447
transition: color .3s;
@@ -49,6 +52,9 @@
4952
}
5053
&:hover img {
5154
box-shadow: 0px 0px 0px 5px #cccccc;
55+
transform: rotate(720deg) scale(.9);
56+
filter: initial;
57+
opacity: 1;
5258
}
5359
}
5460
}

website/src/pages/team/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ const data: { username: string; nickname?: string; }[] = [
1212
{ username: 'yaob421123', nickname: 'yaobin' },
1313
{ username: 'jaywcjlove', nickname: '小弟调调™' },
1414
{ username: 'didiboji', nickname: 'didiboji' },
15+
{ username: 'Amber-Nan', nickname: 'Amber-Nan' },
16+
{ username: 'zuojiahui', nickname: '左嘉辉' },
1517
];
1618

1719
export default function Team(props: DefaultProps) {

0 commit comments

Comments
 (0)