chore: update

This commit is contained in:
xiaoxian521 2024-01-16 00:58:25 +08:00
parent 6db0d63733
commit ebea78f53b

View File

@ -196,6 +196,13 @@ const layoutHeader = defineComponent({
</div> </div>
<!-- 系统设置 --> <!-- 系统设置 -->
<setting /> <setting />
<a
target="_blank"
href="https://www.bilibili.com/video/BV1He411m7Qs/"
class="absolute top-[53px] right-[50px] text-lg z-[999] cursor-pointer review"
>
回顾2023
</a>
</div> </div>
</template> </template>
@ -230,4 +237,24 @@ const layoutHeader = defineComponent({
.re-screen { .re-screen {
margin-top: 12px; margin-top: 12px;
} }
@keyframes pulse {
0%,
100% {
transform: scale(1);
}
50% {
transform: scale(1.3);
}
}
.review {
font-size: 18px;
animation: pulse 2s 3;
&:hover {
opacity: 0.75;
}
}
</style> </style>