LANCommander/LANCommander.UI/Components/Chat/ChatThread.razor.scss
Pat Hartl 66abc6e59e Implement infinite loading with chat thread
- Chat messages are now loaded based on scroll position
- Read status is now updated and set by last message read
- Reworked script importing by using ScriptProvider
2026-01-11 14:38:24 -06:00

24 lines
No EOL
425 B
SCSS

.chat-thread {
height: 100%;
flex-grow: 1;
background: #141414;
display: flex;
flex-direction: column;
min-height: 0;
}
.chat-thread-messages {
flex: 1 1 0;
min-height: 0;
padding: 1em;
display: flex;
flex-direction: column;
overflow: hidden;
.infinite-scroll {
flex: 1 1 0;
min-height: 0;
overflow-y: auto;
overflow-x: hidden;
}
}