From bd9c45a170386f5e6222d70cbe83eef74d0fc8df Mon Sep 17 00:00:00 2001 From: Ashley Harrison Date: Thu, 4 Nov 2021 09:55:52 +0000 Subject: [PATCH] NewsPanel: Prevent date and title collapsing to single row (#41260) --- public/app/plugins/panel/news/NewsPanel.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/app/plugins/panel/news/NewsPanel.tsx b/public/app/plugins/panel/news/NewsPanel.tsx index ba05ab88484..fbfeb30d9e3 100755 --- a/public/app/plugins/panel/news/NewsPanel.tsx +++ b/public/app/plugins/panel/news/NewsPanel.tsx @@ -133,7 +133,10 @@ const getStyles = stylesFactory((theme: GrafanaTheme2) => ({ itemWide: css` flex-direction: row; `, - body: css``, + body: css` + display: flex; + flex-direction: column; + `, socialImage: css` display: flex; align-items: center;