Fix .status conflicting with .notification.status
Naming is hard
This commit is contained in:
parent
a792f494bf
commit
ed1d475a12
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
||||||
gap: 12px;
|
gap: 12px;
|
||||||
animation: appear 0.2s ease-out;
|
animation: appear 0.2s ease-out;
|
||||||
}
|
}
|
||||||
.notification.mention {
|
.notification.notification-mention {
|
||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
}
|
}
|
||||||
.only-mentions .notification:not(.mention),
|
.only-mentions .notification:not(.mention),
|
||||||
|
|
|
@ -318,7 +318,7 @@ function Notification({ notification, instance }) {
|
||||||
: contentText[type];
|
: contentText[type];
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div class={`notification ${type}`} tabIndex="0">
|
<div class={`notification notification-${type}`} tabIndex="0">
|
||||||
<div
|
<div
|
||||||
class={`notification-type notification-${type}`}
|
class={`notification-type notification-${type}`}
|
||||||
title={new Date(notification.createdAt).toLocaleString()}
|
title={new Date(notification.createdAt).toLocaleString()}
|
||||||
|
|
Loading…
Add table
Reference in a new issue