style: replace virtual inner with logs list

This commit is contained in:
jialin
2024-11-06 09:29:12 +08:00
parent f684a3b0ae
commit 8bc67b323c
8 changed files with 144 additions and 242 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
.pg {
position: absolute;
top: 16px;
right: 16px;
right: 20px;
width: 40px;
height: 130px;
@@ -0,0 +1,26 @@
.logs-wrap {
background-color: var(--color-logs-bg);
border-radius: var(--border-radius-mini);
font-family: monospace, Menlo, Courier, 'Courier New', Consolas, Monaco,
'Liberation Mono' !important;
.content {
word-wrap: break-word;
height: 100%;
padding-right: 2px;
&.line-break {
word-wrap: break-word;
}
.text {
min-height: 22px;
}
color: var(--color-logs-text);
font-size: var(--font-size-small);
line-height: 22px;
white-space: pre-wrap;
background-color: var(--color-logs-bg);
}
}