diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2022-06-10 16:32:48 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2022-06-10 16:32:48 +0200 |
| commit | 7f1edf711e4ed1de7b9cca495ca00f9126853512 (patch) | |
| tree | 7c06b0f4af6cfc8976c83806b3a81231d4d07330 /frontend/app/views/index/index.css | |
| parent | 601dcba33e1bc3ddb9f705269a2085be3fb64f02 (diff) | |
fix weird scrollbars
Diffstat (limited to 'frontend/app/views/index/index.css')
| -rw-r--r-- | frontend/app/views/index/index.css | 21 |
1 files changed, 10 insertions, 11 deletions
diff --git a/frontend/app/views/index/index.css b/frontend/app/views/index/index.css index 028f6c2..e90bdcd 100644 --- a/frontend/app/views/index/index.css +++ b/frontend/app/views/index/index.css @@ -1,24 +1,23 @@ * { - } .index { width: 100%; height: 100%; background: linear-gradient( - -45deg, - rgba(0, 0, 64, 0.5), - rgba(128, 0, 64, 0.5) - ); + -45deg, + rgba(0, 0, 64, 0.5), + rgba(128, 0, 64, 0.5) + ); padding: 1rem; } .index > div { display: inline-block; padding: 1rem; max-height: calc(100% - 2rem); - overflow: scroll; - background: rgba(64,12,64,0.9); - box-shadow: 3px 3px 6px rgba(0,0,0,0.4), - inset 0 0 60px rgba(128,255,255,0.1); + overflow-y: auto; + background: rgba(64, 12, 64, 0.9); + box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4), + inset 0 0 60px rgba(128, 255, 255, 0.1); } .graphIndex { min-width: 20rem; @@ -31,8 +30,8 @@ .graphIndex > div { display: flex; flex-direction: row; - justify-content: space-between + justify-content: space-between; } .graphIndex > div > a:first-child { color: #fff; -}
\ No newline at end of file +} |
