fix: fix node border style in dark mode

This commit is contained in:
fantasticit 2022-03-31 23:06:34 +08:00
parent 5c84aa1211
commit f329b68822
1 changed files with 7 additions and 3 deletions

View File

@ -1,11 +1,15 @@
:root { body {
--border-radius: 4px; --border-radius: 4px;
--box-shadow: rgb(0 0 0 / 10%) 0 0 10px; --box-shadow: rgb(0 0 0 / 10%) 0 0 10px;
--node-border-color: rgb(28 31 35 / 8%);
/* 自定义节点 边框 */
--node-border-color: rgb(28 31 35 / 8%);
/* 自定义节点 hover */ /* 自定义节点 hover */
--node-hover-border-color: #bacefd; --node-hover-border-color: #bacefd;
/* 自定义节点选中 */ /* 自定义节点选中 */
--node-selected-border-color: rgb(0 101 255); --node-selected-border-color: rgb(0 101 255);
} }
body[theme-mode='dark'] {
--node-border-color: rgb(255, 255, 255, 0.08);
}