From bcfea63e299eddfe31ba7c210b1184ea7da6e778 Mon Sep 17 00:00:00 2001 From: ph1p Date: Sun, 24 May 2020 23:41:56 +0200 Subject: [PATCH] style(seperator): add theme color --- src/views/Chat/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/Chat/index.tsx b/src/views/Chat/index.tsx index a19d2fc..19508ce 100644 --- a/src/views/Chat/index.tsx +++ b/src/views/Chat/index.tsx @@ -217,7 +217,7 @@ const ChatView: FunctionComponent = (props) => { const MessageSeperator = styled.div` border-width: 1px 0 0 0; - border-color: #ececec; + border-color: ${(p) => p.theme.secondaryBackgroundColor}; border-style: dotted; margin: 5px 0 10px; `;