From 4bf55411f1d3f14e544c5719818fbd7dcdc2c824 Mon Sep 17 00:00:00 2001 From: cubemaze Date: Sat, 13 May 2023 18:00:21 +0800 Subject: chore: chart height --- src/components/MemoryChart.module.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/components/MemoryChart.module.scss') diff --git a/src/components/MemoryChart.module.scss b/src/components/MemoryChart.module.scss index b31c095..63f4697 100644 --- a/src/components/MemoryChart.module.scss +++ b/src/components/MemoryChart.module.scss @@ -1,4 +1,14 @@ .TrafficChart { color: var(--color-text); background-color: var(--color-bg-chart); + height: 23vh !important; + @media only screen and (min-width: 600px) { + height: 25vh !important; + } + @media only screen and (min-width: 768px) { + height: 27vh !important; + } + @media only screen and (min-width: 1200px) { + height: 35vh !important; + } } -- cgit v1.3.1