|
@@ -1,11 +1,11 @@
|
|
|
<template>
|
|
|
- <el-main style="display: flex; align-items: center">
|
|
|
+ <el-main style="display: flex; align-items: center; margin-bottom: 20px;">
|
|
|
<div class="main-content">
|
|
|
<div
|
|
|
class="module-card"
|
|
|
v-for="menu in menuList.filter(m => m.parentId === null)"
|
|
|
:key="menu.id"
|
|
|
- @click="() => $router.push('/' + menu.ext4)"
|
|
|
+ @click="() => $router.push('/' + menu.ext4 + '/tips')"
|
|
|
>
|
|
|
{{ menu.name }}
|
|
|
</div>
|
|
@@ -63,6 +63,8 @@ export default {
|
|
|
align-items: center;
|
|
|
justify-items: center;
|
|
|
|
|
|
+ /* min-width: 100%; */
|
|
|
+
|
|
|
/* height: 100%; */
|
|
|
}
|
|
|
|
|
@@ -86,12 +88,12 @@ export default {
|
|
|
box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
|
|
|
|
|
|
font-size: 30px;
|
|
|
- color: #fff;
|
|
|
+ /* color: #fff; */
|
|
|
text-align: center;
|
|
|
- animation: glow 1s ease-in-out infinite alternate;
|
|
|
+ /* animation: glow 1s ease-in-out infinite alternate; */
|
|
|
}
|
|
|
|
|
|
-@keyframes glow {
|
|
|
+/* @keyframes glow {
|
|
|
from {
|
|
|
text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073,
|
|
|
0 0 40px #e60073, 0 0 50px #e60073, 0 0 60px #e60073, 0 0 70px #e60073;
|
|
@@ -100,5 +102,5 @@ export default {
|
|
|
text-shadow: 0 0 20px #fff, 0 0 30px #ff4da6, 0 0 40px #ff4da6,
|
|
|
0 0 50px #ff4da6, 0 0 60px #ff4da6, 0 0 70px #ff4da6, 0 0 80px #ff4da6;
|
|
|
}
|
|
|
-}
|
|
|
+} */
|
|
|
</style>
|