From ca8a29713dc68fc429c0d7e6b4ba479a9b983ffe Mon Sep 17 00:00:00 2001 From: deepend-tildeclub <58404188+deepend-tildeclub@users.noreply.github.com> Date: Sat, 17 Aug 2024 10:36:39 -0600 Subject: [PATCH] Update style.css --- style.css | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/style.css b/style.css index c15712b..eede9fe 100644 --- a/style.css +++ b/style.css @@ -291,3 +291,26 @@ pre { font-weight: bold; color: #fb5 !important; /* Use !important to override other styles */ } +.active-users-container { + margin-top: 20px; +} + +.active-users-list { + max-height: 150px; /* Adjust the height as needed */ + overflow-y: auto; + border: 1px solid #ccc; + padding: 10px; + background-color: #f9f9f9; + border-radius: 0.25em; +} + +.active-users-list ul { + list-style-type: none; + padding: 0; + margin: 0; +} + +.active-users-list li { + padding: 5px 0; + border-bottom: 1px solid #eee; +}