Browse Source

feat: 首页文字变更

sunxiao 2 weeks ago
parent
commit
5b226ca39b
1 changed files with 6 additions and 3 deletions
  1. 6 3
      src/components/Layout/TheArchival.vue

+ 6 - 3
src/components/Layout/TheArchival.vue

@@ -3,7 +3,7 @@ import { NPopover } from 'naive-ui';
 </script>
 
 <template>
-  <div class="flex space-x-[10px] text-[12px] text-[#fff]">
+  <div class="flex space-x-[10px] text-[12px] notice">
     <div>
       以上内容均由LibraAI生成,仅供参考 
     </div>
@@ -32,6 +32,9 @@ import { NPopover } from 'naive-ui';
 </template>
 
 <style lang="scss" scoped>
+  .notice {
+    color: rgba(26, 32, 41, 0.9);
+  }
   .archival {
     transition: all 0.3s;
     cursor: pointer;
@@ -43,10 +46,10 @@ import { NPopover } from 'naive-ui';
       margin-left: 3px;
       border-right:4px solid transparent;
       border-left:4px solid transparent;
-      border-bottom:4px solid #fff;
+      border-bottom:4px solid rgba(26, 32, 41, 0.6);
     }
     &:hover {
-      color: #eee;
+      color: rgba(26, 32, 41, 0.7);
     }
   }
 </style>