mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-03-14 12:18:30 +03:00
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;
|
||||
animation: appear 0.2s ease-out;
|
||||
}
|
||||
.notification.mention {
|
||||
.notification.notification-mention {
|
||||
margin-top: 16px;
|
||||
}
|
||||
.only-mentions .notification:not(.mention),
|
||||
|
|
|
@ -318,7 +318,7 @@ function Notification({ notification, instance }) {
|
|||
: contentText[type];
|
||||
|
||||
return (
|
||||
<div class={`notification ${type}`} tabIndex="0">
|
||||
<div class={`notification notification-${type}`} tabIndex="0">
|
||||
<div
|
||||
class={`notification-type notification-${type}`}
|
||||
title={new Date(notification.createdAt).toLocaleString()}
|
||||
|
|
Loading…
Add table
Reference in a new issue