diff --git a/components/buffer.js b/components/buffer.js
index 52c9771..007269b 100644
--- a/components/buffer.js
+++ b/components/buffer.js
@@ -146,9 +146,10 @@ class LogLine extends Component {
lineClass = "talk";
let prefix = "<", suffix = ">";
if (msg.command === "NOTICE") {
+ lineClass += " notice";
prefix = suffix = "-";
}
- content = html`${prefix}${createNick(msg.prefix.name)}${suffix} ${linkify(stripANSI(text), onChannelClick)}`;
+ content = html`${prefix}${createNick(msg.prefix.name)}${suffix} ${linkify(stripANSI(text), onChannelClick)}`;
}
let allowedPrefixes = server.statusMsg;