mirror of
https://github.com/Readarr/Readarr
synced 2026-01-20 14:31:27 +01:00
* New: Webpack 4 * New: Gulp 4 * New: Transpile UI for old browsers Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
35 lines
378 B
CSS
35 lines
378 B
CSS
.level {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
width: 20px;
|
|
}
|
|
|
|
.info {
|
|
color: #1e90ff;
|
|
}
|
|
|
|
.debug {
|
|
color: #808080;
|
|
}
|
|
|
|
.trace {
|
|
color: #d3d3d3;
|
|
}
|
|
|
|
.warn {
|
|
color: $warningColor;
|
|
}
|
|
|
|
.error {
|
|
color: $dangerColor;
|
|
}
|
|
|
|
.fatal {
|
|
color: $purple;
|
|
}
|
|
|
|
.actions {
|
|
composes: cell from '~Components/Table/Cells/TableRowCell.css';
|
|
|
|
width: 45px;
|
|
}
|