refactor: more refactoring to topics as the top-level organization

This commit is contained in:
Andy Burke 2025-09-11 14:09:28 -07:00
parent 11ecd86bb9
commit 4347d20263
18 changed files with 730 additions and 317 deletions

View file

@ -11,7 +11,12 @@
left: 0;
right: 0;
bottom: 5rem;
padding: 0.5rem;
padding: 1.5rem 1.5rem 0.75rem 1.5rem;
}
@media screen and (max-width: 1200px) {
#chat #topic-chat-content {
padding: 0.75rem;
}
}
#chat #topic-chat-entry-container {
@ -51,7 +56,7 @@
cursor: pointer;
align-content: center;
border-radius: var(--border-radius);
border: 1px solid var(--text);
border: 1px solid rgba(128, 128, 128, 0.2);
}
#chat #topic-chat-entry-container form textarea {
@ -60,6 +65,10 @@
background: inherit;
color: inherit;
border-radius: var(--border-radius);
border: 1px solid rgba(128, 128, 128, 0.2);
resize: none;
background: rgba(0, 0, 0, 0.1);
padding: 0.4rem;
}
#chat .message-container {
@ -67,7 +76,7 @@
transition: all 0.33s;
background: rgba(255, 255, 255, 0.03);
margin-top: 0.75rem;
padding: 2px;
padding: 0.5rem;
border-radius: var(--border-radius);
}
@ -137,6 +146,7 @@
padding: 0.25rem 0 0 0;
text-align: center;
text-wrap: nowrap;
background: none;
}
#chat .message-container .message-actions-container label {