Skip to content

Commit

Permalink
Develop (Merge): Fix Auto-Scrolling Issue in Chat Layout
Browse files Browse the repository at this point in the history
Fix Auto-Scrolling Issue in Chat Layout
  • Loading branch information
ktutak1337 authored Jul 28, 2024
2 parents 25d7579 + dd4dfa7 commit 7f57105
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Client/StellarChat.Client.Web/Pages/Home.razor
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@

<PageTitle>Home</PageTitle>

<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">
<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%;")">
<div @ref="ChatMessagesDiv" id="chat-messages" class="overflow-auto flex-grow-1">
<div id="chat-messages" class="overflow-auto flex-grow-1">
@if (_chatState.ChatId == Guid.Empty)
{
<div class="d-flex justify-center align-center h-100">
Expand Down

0 comments on commit 7f57105

Please sign in to comment.