From 0b6814af4d7aa57f7c8655cb9e5077013404af51 Mon Sep 17 00:00:00 2001 From: Nicolas Constant Date: Wed, 27 Mar 2019 23:29:22 -0400 Subject: [PATCH] fixed background color of mention panel --- .../manage-account/mentions/mentions.component.scss | 7 +++++++ .../manage-account/mentions/mentions.component.ts | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/src/app/components/floating-column/manage-account/mentions/mentions.component.scss b/src/app/components/floating-column/manage-account/mentions/mentions.component.scss index e69de29b..88c0dcf9 100644 --- a/src/app/components/floating-column/manage-account/mentions/mentions.component.scss +++ b/src/app/components/floating-column/manage-account/mentions/mentions.component.scss @@ -0,0 +1,7 @@ +@import "variables"; +@import "commons"; +@import "mixins"; + +.stream-toots { + background-color: $column-background; +} \ No newline at end of file diff --git a/src/app/components/floating-column/manage-account/mentions/mentions.component.ts b/src/app/components/floating-column/manage-account/mentions/mentions.component.ts index cc05b51f..13ef67bd 100644 --- a/src/app/components/floating-column/manage-account/mentions/mentions.component.ts +++ b/src/app/components/floating-column/manage-account/mentions/mentions.component.ts @@ -12,7 +12,7 @@ import { NotificationService } from '../../../../services/notification.service'; @Component({ selector: 'app-mentions', templateUrl: '../../../stream/stream-statuses/stream-statuses.component.html', - styleUrls: ['../../../stream/stream-statuses/stream-statuses.component.scss'] + styleUrls: ['../../../stream/stream-statuses/stream-statuses.component.scss', './mentions.component.scss'] }) export class MentionsComponent implements OnInit, OnDestroy { statuses: StatusWrapper[] = [];