Files
Prowlarr/frontend/src/System/Events/LogsTableRow.css
T
2022-05-14 21:54:44 -05:00

36 lines
396 B
CSS

.level {
composes: cell from '~Components/Table/Cells/TableRowCell.css';
width: 20px;
}
.info {
color: #1e90ff;
}
.debug {
color: #808080;
}
.trace {
color: #d3d3d3;
}
.warn {
color: var(--warningColor);
}
.error {
color: var(--dangerColor);
}
.fatal {
color: var(--purple);
}
.actions {
composes: cell from '~Components/Table/Cells/TableRowCell.css';
width: 45px;
}