From 227b562ad980cbd9255ca4cb06cb6c9866514f42 Mon Sep 17 00:00:00 2001 From: therewasaguy Date: Sun, 17 Jul 2016 20:49:38 -0400 Subject: [PATCH] console: color-coded error messages --- client/styles/components/_console.scss | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/client/styles/components/_console.scss b/client/styles/components/_console.scss index f1502c46..0d4b43f7 100644 --- a/client/styles/components/_console.scss +++ b/client/styles/components/_console.scss @@ -11,4 +11,17 @@ position:relative; text-align:left; } + + // assign styles to different types of console messages + .log { + color: black; + } + + .error { + color: red; + } + + .warn { + color: yellow; + } } \ No newline at end of file