mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-05 23:43:57 +00:00
48 lines
543 B
SCSS
48 lines
543 B
SCSS
$info-gray: $secondary-text-gray;
|
|
$info-hover: $section-white;
|
|
|
|
.log {
|
|
font-size: $inner-section-text-size;
|
|
overflow-y: auto;
|
|
user-select: text;
|
|
min-height: 20vh;
|
|
max-height: 40vh;
|
|
}
|
|
|
|
.logEntry {
|
|
display: flex;
|
|
|
|
&.INFO {
|
|
color: $info-gray;
|
|
}
|
|
|
|
&.WARN {
|
|
color: $warning-orange;
|
|
}
|
|
|
|
&.ERROR {
|
|
color: $error-red;
|
|
}
|
|
|
|
&:hover {
|
|
color: $info-hover;
|
|
}
|
|
|
|
.time {
|
|
width: 4.5em;
|
|
}
|
|
|
|
.origin {
|
|
width: 6em;
|
|
}
|
|
|
|
.msg {
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
.buttonBar {
|
|
flex-wrap: wrap;
|
|
padding-bottom: 0.5rem;
|
|
}
|