This commit is contained in:
2024-08-09 19:31:36 +08:00
parent cb1d5c58d1
commit aa479d22fe
36 changed files with 1212 additions and 886 deletions

View File

@@ -11,6 +11,7 @@
>
测试管理平台
</a-typography-title>
<a-typography-title :heading="6" class="version">V0.0.1</a-typography-title>
<icon-menu-fold
v-if="!topMenu && appStore.device === 'mobile'"
style="font-size: 22px; cursor: pointer"
@@ -207,6 +208,10 @@ const handleClickLogo = () => {
margin-left: 14px;
}
}
.version {
color: #666;
user-select: none;
}
.title {
cursor: pointer;
@@ -222,10 +227,18 @@ const handleClickLogo = () => {
}
@keyframes neon6 {
from {
text-shadow: 0 0 10px #fff, 0 0 20px #2563eb, 0 0 30px #2563eb, 0 0 40px #2563eb;
text-shadow:
0 0 10px #fff,
0 0 20px #2563eb,
0 0 30px #2563eb,
0 0 40px #2563eb;
}
to {
text-shadow: 0 0 5px #fff, 0 0 10px #2563eb, 0 0 15px #2563eb, 0 0 20px #2563eb;
text-shadow:
0 0 5px #fff,
0 0 10px #2563eb,
0 0 15px #2563eb,
0 0 20px #2563eb;
}
}
</style>