调整主题色,并清除冗余样式

This commit is contained in:
aixianling
2023-01-16 14:53:39 +08:00
parent 7880f71466
commit 3adc06a275
2 changed files with 4 additions and 7 deletions

View File

@@ -8,7 +8,7 @@
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
height: 100vh; height: 100vh;
width: 100vw; width: 100vw;
--el-color-primary: #384388; --el-color-primary: #92ACD1;
--background-color: #F2F6FF; --background-color: #F2F6FF;
} }

View File

@@ -1,6 +1,6 @@
<template> <template>
<section class="home"> <section class="home">
<div class="headerNav"> <div class="headerNav flex center pad-h32">
<b class="mar-r32" v-text="$sys.title"/> <b class="mar-r32" v-text="$sys.title"/>
<el-row class="fill"/> <el-row class="fill"/>
<el-row align="middle" class="right"> <el-row align="middle" class="right">
@@ -62,13 +62,10 @@ export default {
.headerNav { .headerNav {
width: 100vw; width: 100vw;
height: 80px; height: 60px;
padding: 0 30px;
color: #fff; color: #fff;
background: var(--el-color-primary); background: var(--el-color-primary);
box-sizing: border-box; box-sizing: border-box;
align-items: center;
display: flex;
& > b { & > b {
font-size: 18px; font-size: 18px;
@@ -134,4 +131,4 @@ export default {
} }
} }
} }
</style> </style>