diff --git a/CHANGELOG.md b/CHANGELOG.md index eb79d439..50eac575 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +## Unreleased +### Fixed +- Completely hidden posts still had 1px border + +### Changed +- Settings window has been throughly rearranged to make make more sense and make navication settings easier. + +### Added +- Option to completely hide muted threads + ## [2.4.2] - 2022-01-09 ### Added - Added Apply and Reset buttons to the bottom of theme tab to minimize UI travel 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 3069c8c7..38db52c9 100644 --- a/src/components/notification/notification.vue +++ b/src/components/notification/notification.vue @@ -1,6 +1,7 @@