summaryrefslogtreecommitdiff
path: root/src/components/MemoryChart.module.scss
diff options
context:
space:
mode:
authorcubemaze <[email protected]>2023-05-13 18:00:21 +0800
committercubemaze <[email protected]>2023-05-13 18:00:21 +0800
commit4bf55411f1d3f14e544c5719818fbd7dcdc2c824 (patch)
tree4107421325c5b2f4fe7dc42e1403052c9e262f84 /src/components/MemoryChart.module.scss
parentf8364b79783394427c81360af7bd08ca2aaa9639 (diff)
chore: chart height
Diffstat (limited to 'src/components/MemoryChart.module.scss')
-rw-r--r--src/components/MemoryChart.module.scss10
1 files changed, 10 insertions, 0 deletions
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;
+ }
}