Update style.css

This commit is contained in:
deepend-tildeclub 2024-08-17 10:36:39 -06:00 committed by GitHub
parent 181e288b4e
commit ca8a29713d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 23 additions and 0 deletions

View File

@ -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;
}