diff options
author | notoraptor <stevenbocco@gmail.com> | 2019-08-01 15:45:14 -0400 |
---|---|---|
committer | Philip Paquette <pcpaquette@gmail.com> | 2019-08-01 16:32:55 -0400 |
commit | 528a3068dab32d98bb00a4560b49fb7a1bade53e (patch) | |
tree | 5a5c3509c4f83e18650036df2eafb711bd1dda78 /diplomacy | |
parent | b2d4adf5b968e1c52096440f574b4169eb3a1672 (diff) |
Added overflow-y: scroll to CSS to prevent vertical scroll bar from appearing
Diffstat (limited to 'diplomacy')
-rw-r--r-- | diplomacy/web/src/index.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/diplomacy/web/src/index.css b/diplomacy/web/src/index.css index 8b14a97..77b5512 100644 --- a/diplomacy/web/src/index.css +++ b/diplomacy/web/src/index.css @@ -1,6 +1,10 @@ /** Bootstrap. **/ /** Common. **/ +body { + overflow-y: scroll; +} + span.dropdown-item { cursor: pointer; } |