From 1853cf7b401a77266bc800aebfb3e07cecb95f67 Mon Sep 17 00:00:00 2001 From: Sophia Blair Date: Fri, 11 Sep 2026 19:32:19 -0300 Subject: [PATCH] Make the room list scrollable --- client/screen.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/client/screen.css b/client/screen.css index c69b899..819d7cc 100644 --- a/client/screen.css +++ b/client/screen.css @@ -586,11 +586,13 @@ input[type="range"]:hover { bottom: 100%; left: -1px; width: 100%; + height: fit-content; + max-height: calc(100vh - 60px - 5px); + /* screen height - height lifted from botton - clearance */ overflow: hidden; overflow-y: scroll; background: #444; border: 1px solid #ccc; - max-height: 600px; } #room .more>div { @@ -606,6 +608,8 @@ input[type="range"]:hover { #room .more .new { background: #111; + position: sticky; + top: 0; } #room .more .new:hover {