diff options
| author | HJ <30-hj@users.noreply.git.pleroma.social> | 2022-01-24 18:18:27 +0000 |
|---|---|---|
| committer | HJ <30-hj@users.noreply.git.pleroma.social> | 2022-01-24 18:18:27 +0000 |
| commit | 3cf7f9e3c827299c379c5618a6a972eb375fbb54 (patch) | |
| tree | 157ad2f2d91a2c52c7a73825ffca84d0a5f3eb76 /src/components/notification | |
| parent | 182fcca5da9fa284f46f5ca1c8b1790353dec316 (diff) | |
| parent | f7e2ac1c482d163b429d56e95159ef009044724d (diff) | |
Merge branch 'settings-and-filtering' into 'develop'
Settings rearrange and filtering improvements
See merge request pleroma/pleroma-fe!1394
Diffstat (limited to 'src/components/notification')
| -rw-r--r-- | src/components/notification/notification.scss | 7 | ||||
| -rw-r--r-- | src/components/notification/notification.vue | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/components/notification/notification.scss b/src/components/notification/notification.scss index ec291547..14ec6213 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; &.-muted { padding: 0.25em 0.6em; diff --git a/src/components/notification/notification.vue b/src/components/notification/notification.vue index 634ec8ee..44cd3d8a 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" /> |
