diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-05-22 15:01:02 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-05-22 15:01:02 +0200 |
commit | 4d6a9591d89b66bf6f6b5f4ecf129c9bdc4a46f2 (patch) | |
tree | 17643e44a1cadec391127f030f36dd49eafef5de | |
parent | b1151f6ac7ee7c056ff0d40a8cdab72e293babe7 (diff) | |
download | planetwars.dev-4d6a9591d89b66bf6f6b5f4ecf129c9bdc4a46f2.tar.xz planetwars.dev-4d6a9591d89b66bf6f6b5f4ecf129c9bdc4a46f2.zip |
add scroll bar to match history
-rw-r--r-- | web/pw-server/src/routes/index.svelte | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/web/pw-server/src/routes/index.svelte b/web/pw-server/src/routes/index.svelte index 32efe69..376b324 100644 --- a/web/pw-server/src/routes/index.svelte +++ b/web/pw-server/src/routes/index.svelte @@ -198,6 +198,8 @@ .sidebar-left { width: 240px; background-color: $bg-color; + display: flex; + flex-direction: column; } .sidebar-right { width: 400px; @@ -242,6 +244,7 @@ list-style: none; color: #eee; padding-top: 15px; + overflow-y: scroll; } .match-card { |