diff --git a/app/javascript/mastodon/features/notifications/components/filtered_notifications_banner.tsx b/app/javascript/mastodon/features/notifications/components/filtered_notifications_banner.tsx index 2c4b3b9717..be1ea2c556 100644 --- a/app/javascript/mastodon/features/notifications/components/filtered_notifications_banner.tsx +++ b/app/javascript/mastodon/features/notifications/components/filtered_notifications_banner.tsx @@ -35,7 +35,9 @@ export const FilteredNotificationsBanner: React.FC = () => { className='filtered-notifications-banner' to='/notifications/requests' > - +
+ +
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss index df272746d8..5d69374db5 100644 --- a/app/javascript/styles/mastodon/components.scss +++ b/app/javascript/styles/mastodon/components.scss @@ -10184,8 +10184,8 @@ noscript { align-items: center; border: 1px solid var(--background-border-color); border-top: 0; - padding: 24px 32px; - gap: 16px; + padding: 16px; + gap: 8px; color: $darker-text-color; text-decoration: none; @@ -10195,10 +10195,8 @@ noscript { color: $secondary-text-color; } - .icon { - width: 24px; - height: 24px; - padding: 2px; + .notification-group__icon { + color: inherit; } &__text { @@ -10349,7 +10347,7 @@ noscript { align-items: center; justify-content: center; flex: 0 0 auto; - color: $highlight-text-color; + color: $dark-text-color; .icon { width: 28px; @@ -10357,6 +10355,11 @@ noscript { } } + &__follow &__icon, + &__follow-request &__icon { + color: $highlight-text-color; + } + &--favourite &__icon { color: $gold-star; }