fix: problem of component style in night mode; 🐛

修复:夜晚模式下组件样式问题;
This commit is contained in:
iczer
2020-07-08 11:49:12 +08:00
parent 32577b038a
commit 719dba0bd9
24 changed files with 86 additions and 187 deletions

View File

@@ -62,7 +62,7 @@ export default {
margin: 0 8px;
font-size: 12px;
padding: 2px 6px;
background-color: rgba(27,31,35,0.15);
background-color: @base-bg-color;
}
}
.actions{

View File

@@ -14,11 +14,11 @@ export default {
<style lang="less" scoped>
.task-item{
margin-bottom: 16px;
box-shadow: 0 1px 1px rgba(27,31,35,0.1);
box-shadow: 0 1px 1px @shadow-color;
border-radius: 6px;
& :hover{
cursor: move;
box-shadow: 0 1px 1px rgba(27,31,35,0.15);
box-shadow: 0 1px 2px @shadow-color;
border-radius: 6px;
}
}