LogViewer.css•916 B
.log-viewer {
height: 100%;
display: flex;
flex-direction: column;
background-color: #1e1e1e;
color: #d4d4d4;
}
.log-header {
background-color: #252526;
padding: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid #3e3e42;
}
.log-header h2 {
margin: 0;
font-size: 1.2rem;
color: #cccccc;
}
.log-header label {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: 0.9rem;
color: #cccccc;
}
.log-header input[type="checkbox"] {
cursor: pointer;
}
.log-content {
flex: 1;
overflow-y: auto;
padding: 1rem;
font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
font-size: 0.9rem;
line-height: 1.4;
}
.log-line {
margin-bottom: 0.25rem;
white-space: pre-wrap;
word-break: break-all;
}
.loading,
.no-logs {
text-align: center;
padding: 2rem;
color: #8b8b8b;
}
#log-bottom {
height: 1px;
}