使得样式更加适配 vscode 的 size

This commit is contained in:
锦恢 2024-11-15 23:15:14 +08:00
parent 77575c2efe
commit 2fd8e87162
2 changed files with 5 additions and 4 deletions

View File

@ -107,6 +107,7 @@ const expandManage = reactive({
align-items: center; align-items: center;
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
font-size: 0.75rem;
} }
.vcd-treeview-item::selection { .vcd-treeview-item::selection {
@ -141,8 +142,8 @@ const expandManage = reactive({
} }
.collapse-tag { .collapse-tag {
height: 7px; height: 5px;
width: 7px; width: 5px;
border-top: solid 1.7px var(--vscode-foreground); border-top: solid 1.7px var(--vscode-foreground);
border-left: solid 1.7px var(--vscode-foreground); border-left: solid 1.7px var(--vscode-foreground);
transform: rotate(135deg); transform: rotate(135deg);

View File

@ -135,14 +135,14 @@ function toggleRender(event, signal) {
.vcd-signal-signal-item { .vcd-signal-signal-item {
margin: 3px; margin: 1px;
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
height: 21px; height: 21px;
padding-left: 3px; padding-left: 3px;
cursor: pointer; cursor: pointer;
align-items: center; align-items: center;
font-size: 0.9rem; font-size: 0.75rem;
} }