Skip to content

Commit

Permalink
cc
Browse files Browse the repository at this point in the history
  • Loading branch information
BeepBeepBopBop committed Jan 11, 2025
1 parent 2b91f6f commit 54379d7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions LM-Kit-Maestro/UI/Razor/Components/Chat.razor
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@
@inherits MvvmComponentBase<ChatPageViewModel>

<div id="chat-container">
<div id="chats-sidebar">

</div>

<div id="conversation-container">
<div id="conversation-content"
class="chat-element dark @(ViewModel.ConversationListViewModel.CurrentConversation is { IsEmpty: true } ? "centered-container" : "top-align-container")">
Expand Down Expand Up @@ -68,6 +72,10 @@
</div>
</div>

<div id="settings-sidebar">

</div>

<div id="user-input" class="chat-element">
<UserInput ViewModel="ViewModel!.ConversationListViewModel.CurrentConversation" />
</div>
Expand Down
3 changes: 2 additions & 1 deletion LM-Kit-Maestro/UI/Razor/Components/Chat.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
height: 100%;
width: 100%;
display: grid;
grid-template-rows: 1fr auto;
/*padding-inline: 8px;*/
/*padding-block: 8px;*/
/*position: fixed;*/
/* width: auto;
left: 0;
right: 0;*/

}

#conversation-container {
Expand All @@ -18,6 +18,7 @@
position: relative;
overflow-y: auto;
scrollbar-gutter: both-edges stable;
grid-template-rows: 1fr auto;
}

#conversation-container::-webkit-scrollbar {
Expand Down

0 comments on commit 54379d7

Please sign in to comment.