aboutsummaryrefslogtreecommitdiff
path: root/src/components/notification
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2021-06-08 16:14:01 +0300
committerHenry Jameson <me@hjkos.com>2021-06-08 16:14:01 +0300
commitb87a9d6675cf7cd8d37d45e62013fab27cbc46e6 (patch)
tree3ef91de1817497a78c10752bc57057791810e82c /src/components/notification
parent2725a0c6398a876590b458ff1a8d6c2cc9af1d11 (diff)
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.scss6
-rw-r--r--src/components/notification/notification.vue1
2 files changed, 7 insertions, 0 deletions
diff --git a/src/components/notification/notification.scss b/src/components/notification/notification.scss
index f5905560..e075747b 100644
--- a/src/components/notification/notification.scss
+++ b/src/components/notification/notification.scss
@@ -2,6 +2,12 @@
// TODO Copypaste from Status, should unify it somehow
.Notification {
+ border-bottom: 1px solid;
+ border-color: $fallback--border;
+ border-color: var(--border, $fallback--border);
+ word-wrap: break-word;
+ word-break: break-word;
+
&.-muted {
padding: 0.25em 0.6em;
height: 1.2em;
diff --git a/src/components/notification/notification.vue b/src/components/notification/notification.vue
index 0081dee4..fb324cec 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"
/>