From 1fc436f3e2441e9dcb13b79709a2156d389ac360 Mon Sep 17 00:00:00 2001 From: James Morris Date: Thu, 5 May 2022 11:11:55 +0100 Subject: [PATCH] Small hack fix to totals chart to keep responsiveness for new Dashboard refs: https://github.com/TryGhost/Team/issues/1531 - we've had to use a 99% width hack to ensure ChartJS is responsive - this introduces a small negative margin to fix the container whilst keeping hack --- ghost/admin/app/styles/layouts/dashboard-v5.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ghost/admin/app/styles/layouts/dashboard-v5.css b/ghost/admin/app/styles/layouts/dashboard-v5.css index 01eb464f7e..4d4eace35c 100644 --- a/ghost/admin/app/styles/layouts/dashboard-v5.css +++ b/ghost/admin/app/styles/layouts/dashboard-v5.css @@ -1698,3 +1698,7 @@ Dashboard v5 Tooltips */ .gh-dashboard5-totals .gh-dashboard5-chart-container { height: 200px; } + +.gh-dashboard5-totals .gh-dashboard5-chart-container { + margin-right: -10px; /* fix 99% width ChartJS hack */ +}