邓宏
3 years ago
12 changed files with 55 additions and 9 deletions
@ -0,0 +1,24 @@ |
|||
*, |
|||
*:before, |
|||
*:after { |
|||
box-sizing: border-box; |
|||
} |
|||
body { |
|||
font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "微软雅黑", Arial, sans-serif; |
|||
font-size: 14px; |
|||
line-height: 1.15; |
|||
color: @--color-text-primary; |
|||
background-color: #fff; |
|||
} |
|||
a { |
|||
color: mix(#fff, @--color-primary, 20%); |
|||
text-decoration: none; |
|||
&:focus, |
|||
&:hover { |
|||
color: @--color-primary; |
|||
text-decoration: underline; |
|||
} |
|||
} |
|||
img { |
|||
vertical-align: middle; |
|||
} |
@ -0,0 +1,2 @@ |
|||
@import url("variables.less"); |
|||
@import url("base.less"); |
@ -0,0 +1,22 @@ |
|||
/** |
|||
* 站点变量 |
|||
* |
|||
* #1 重置element-ui组件, 请查阅_element-ui__variable-lookup.scss官方变量列表进行重置, 必须保证变量名一致才能生效! |
|||
* #2 站内变量 |
|||
*/ |
|||
|
|||
// ---------- #1 ---------- |
|||
@--color-primary: #17b3a3; |
|||
@--color-text-primary: #303133; |
|||
|
|||
|
|||
// ---------- #2 ---------- |
|||
// Navbar |
|||
@navbar--background-color: @--color-primary; |
|||
|
|||
// Sidebar |
|||
@sidebar--background-color-dark: #263238; |
|||
@sidebar--color-text-dark: #8a979e; |
|||
|
|||
// Content |
|||
@content--background-color: #f1f4f5; |
After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 2.0 KiB |
@ -1,3 +0,0 @@ |
|||
import {ref} from 'vue' |
|||
var a=ref(43) |
|||
console.log(a,"-----------asdf--------") |
Loading…
Reference in new issue