Files
ontime/apps/client/src/features/log/Log.module.scss
T
2025-01-24 16:48:42 +01:00

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;
}