浏览代码

Fix confusing colors on filter nodes

master
Fen Dweller 4 年前
父节点
当前提交
1b415a6390
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. +3
    -2
      src/components/nodes/FilterNode.vue

+ 3
- 2
src/components/nodes/FilterNode.vue 查看文件

@@ -31,15 +31,16 @@ export default class FilterNode extends Vue {
.filter-node {
width: 100%;
height: 100%;
background: #333;
background: #555;
display: flex;
flex-direction: column;
position: relative;
transition: 0.2s background;
border-radius: 25px;
}

.filter-node.inactive {
background: #555;
background: #888;
}

.node-name {


正在加载...
取消
保存