aboutsummaryrefslogtreecommitdiff
path: root/src/components/notification
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2022-01-24 21:29:19 +0200
committerHenry Jameson <me@hjkos.com>2022-01-24 21:29:19 +0200
commit94c37e8adfd9da591d2e88d1f350ad515c61ac84 (patch)
treeea02402c6cd7fcbd7d90e5af78d16193f9db92a3 /src/components/notification
parent56de3d2f528a818835c04baa1c1686f91fc42161 (diff)
parent3cf7f9e3c827299c379c5618a6a972eb375fbb54 (diff)
Merge remote-tracking branch 'origin/develop' into proper-attachments
* origin/develop: undo accidental change when merging Apply 1 suggestion(s) to 1 file(s) Rearranged settings, moved more stuff to filtering where apllicable. Changed how filering works.
Diffstat (limited to 'src/components/notification')
-rw-r--r--src/components/notification/notification.scss7
-rw-r--r--src/components/notification/notification.vue1
2 files changed, 7 insertions, 1 deletions
diff --git a/src/components/notification/notification.scss b/src/components/notification/notification.scss
index a91bf062..38978137 100644
--- a/src/components/notification/notification.scss
+++ b/src/components/notification/notification.scss
@@ -2,7 +2,12 @@
// TODO Copypaste from Status, should unify it somehow
.Notification {
- --emoji-size: 14px;
+ border-bottom: 1px solid;
+ border-color: $fallback--border;
+ border-color: var(--border, $fallback--border);
+ word-wrap: break-word;
+ word-break: break-word;
+ --emoji-size: 14px;
&:hover {
--_still-image-img-visibility: visible;
diff --git a/src/components/notification/notification.vue b/src/components/notification/notification.vue
index eb02bed1..c7305b78 100644
--- a/src/components/notification/notification.vue
+++ b/src/components/notification/notification.vue
@@ -1,6 +1,7 @@
<template>
<Status
v-if="notification.type === 'mention'"
+ class="Notification"
:compact="true"
:statusoid="notification.status"
/>