fix: table cell refresh

This commit is contained in:
jialin
2024-09-14 16:53:23 +08:00
parent 05390743e0
commit c1c24b9e5b
5 changed files with 50 additions and 22 deletions
+26 -2
View File
@@ -7,11 +7,16 @@
.content {
word-wrap: break-word;
height: 100%;
&.line-break {
word-wrap: break-word;
}
.text {
height: 100%;
}
color: var(--color-logs-text);
font-size: var(--font-size-small);
line-height: 22px;
@@ -20,7 +25,26 @@
}
}
.xterm .xterm-viewport {
overflow-y: hidden !important;
.xterm {
height: 100% !important;
.xterm-viewport {
overflow-y: auto !important;
// custom scrollbar
&::-webkit-scrollbar {
width: 8px;
height: 6px;
}
&::-webkit-scrollbar-thumb {
background-color: var(--color-scrollbar-thumb);
border-radius: 4px;
}
&::-webkit-scrollbar-track {
background-color: var(--color-scrollbar-track);
border-radius: 4px;
}
}
}
}