From ebea78f53b724160303c3e69ca9c501d7977d131 Mon Sep 17 00:00:00 2001
From: xiaoxian521 <1923740402@qq.com>
Date: Tue, 16 Jan 2024 00:58:25 +0800
Subject: [PATCH] chore: update
---
src/layout/index.vue | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/src/layout/index.vue b/src/layout/index.vue
index 88aa60b95..a306da000 100644
--- a/src/layout/index.vue
+++ b/src/layout/index.vue
@@ -196,6 +196,13 @@ const layoutHeader = defineComponent({
+
+ 回顾2023!
+
@@ -230,4 +237,24 @@ const layoutHeader = defineComponent({
.re-screen {
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;
+ }
+}