From e3ec187d4b04dc85b266c1af43f8df6593570414 Mon Sep 17 00:00:00 2001 From: Asa Ayers Date: Mon, 10 Jul 2023 08:06:00 -0700 Subject: [PATCH] Fix scrolling --- app/routes/lsp.$project._index.module.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/routes/lsp.$project._index.module.css b/app/routes/lsp.$project._index.module.css index 2f90e2f..1612e44 100644 --- a/app/routes/lsp.$project._index.module.css +++ b/app/routes/lsp.$project._index.module.css @@ -1,6 +1,10 @@ ul.browseProject, .browseProject ul { - overflow: auto; /* This is shown in a sidebar, so deeply nested folders can be hard to reach */ padding-inline-start: 0.5em; } + +ul.browseProject { + height: 100%; + overflow: auto; +}