From 09085aa2b8743efbbbc145c049cd339916e7da19 Mon Sep 17 00:00:00 2001 From: Isabell Cowan Date: Sun, 24 Dec 2017 23:22:45 -0600 Subject: [PATCH] Use "overflow: scroll" on sidebar. * Prevent network members with many peers from making the sidebar taller than the view port. --- web/static/style.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/static/style.css b/web/static/style.css index 802ed3e..398c780 100644 --- a/web/static/style.css +++ b/web/static/style.css @@ -85,9 +85,10 @@ li { top: 0; right: 0; /*bottom: 0;*/ + max-height: calc(100vh - 40px); min-width: 250px; z-index: 999; - /*overflow-y: scroll;*/ + overflow-y: scroll; font-size: 12px; }