We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25f3645 commit dd4dfa7Copy full SHA for dd4dfa7
src/Client/StellarChat.Client.Web/Pages/Home.razor
@@ -15,9 +15,9 @@
15
16
<PageTitle>Home</PageTitle>
17
18
-<div class="d-flex flex-column" style="height: 100vh">
+<div @ref="ChatMessagesDiv" class="d-flex flex-column overflow-auto flex-grow-1" style="height: 100vh">
19
<div class="d-flex flex-column flex-grow-1 mt-4 @(_chatState.IsFullWidthText ? "mx-5 flex-grow-1" : "mx-auto")" style="@(_chatState.IsFullWidthText ? "" : "max-width: 960px; width: 100%;")">
20
- <div @ref="ChatMessagesDiv" id="chat-messages" class="overflow-auto flex-grow-1">
+ <div id="chat-messages" class="overflow-auto flex-grow-1">
21
@if (_chatState.ChatId == Guid.Empty)
22
{
23
<div class="d-flex justify-center align-center h-100">
0 commit comments