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/Home.module.scss | |
| parent | f8364b79783394427c81360af7bd08ca2aaa9639 (diff) | |
chore: chart height
Diffstat (limited to 'src/components/Home.module.scss')
| -rw-r--r-- | src/components/Home.module.scss | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/components/Home.module.scss b/src/components/Home.module.scss index deee456..07098aa 100644 --- a/src/components/Home.module.scss +++ b/src/components/Home.module.scss @@ -8,6 +8,16 @@ } .chart { margin-top: 25px; + height: 50vh; + @media only screen and (min-width: 600px) { + height: 55vh; + } + @media only screen and (min-width: 768px) { + height: 60vh; + } + @media only screen and (min-width: 1200px) { + height: 75vh; + } display: grid; grid-gap: 20px; grid-template-columns: 100%; |
