feat: 贡献者渐变

This commit is contained in:
camera-2018
2023-04-19 01:25:33 +08:00
parent d94708289d
commit b511efdc53
2 changed files with 24 additions and 2 deletions

View File

@@ -9,3 +9,22 @@ import { members } from './members.js'
Say hello to our awesome team.
<VPTeamMembers size="small" :members="members" />
<style>
.affiliation > .title, .profile > .data > .name{
font-weight: bold !important;
color: transparent;
background: -webkit-linear-gradient(
256deg,
var(--vp-c-brand),
var(--vp-c-brand-light),
var(--vp-c-brand-next)
);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: var(--vp-home-hero-name-color);
animation: rainbow 3s cubic-bezier(0.1, 0.7, 1.0, 0.1) infinite !important;
}
</style>