chore(deps): update dependency nuxt to v4

This commit is contained in:
Renovate
2025-07-16 16:05:26 +00:00
committed by Joakim Olsson
parent db5f9725d4
commit d8e438be10
22 changed files with 1264 additions and 573 deletions
+25
View File
@@ -0,0 +1,25 @@
body,
html {
font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
}
body {
margin: 0;
}
.t-center {
text-align: center;
}
.app-fade-in {
animation: fade-in 350ms ease-in-out forwards;
}
@keyframes fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}