diff options
| author | cubemaze <[email protected]> | 2023-05-13 18:00:21 +0800 |
|---|---|---|
| committer | cubemaze <[email protected]> | 2023-05-13 18:00:21 +0800 |
| commit | 4bf55411f1d3f14e544c5719818fbd7dcdc2c824 (patch) | |
| tree | 4107421325c5b2f4fe7dc42e1403052c9e262f84 /src/components/TrafficChart.module.scss | |
| parent | f8364b79783394427c81360af7bd08ca2aaa9639 (diff) | |
chore: chart height
Diffstat (limited to 'src/components/TrafficChart.module.scss')
| -rw-r--r-- | src/components/TrafficChart.module.scss | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/components/TrafficChart.module.scss b/src/components/TrafficChart.module.scss index b31c095..63f4697 100644 --- a/src/components/TrafficChart.module.scss +++ b/src/components/TrafficChart.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; + } } |
