console: color-coded error messages
This commit is contained in:
parent
8b69ab7fdd
commit
227b562ad9
1 changed files with 13 additions and 0 deletions
|
@ -11,4 +11,17 @@
|
||||||
position:relative;
|
position:relative;
|
||||||
text-align:left;
|
text-align:left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// assign styles to different types of console messages
|
||||||
|
.log {
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
.error {
|
||||||
|
color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.warn {
|
||||||
|
color: yellow;
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue