6 | An unhandled error has occurred.
7 |
Reload
8 |
🗙
9 |
10 |
--------------------------------------------------------------------------------
/src/ProjectTemplates/Microsoft.Extensions.AI.Templates/src/ChatWithCustomData/ChatWithCustomData-CSharp.Web/Components/Pages/Chat/Chat.razor.css:
--------------------------------------------------------------------------------
1 | .chat-container {
2 | position: sticky;
3 | bottom: 0;
4 | padding-left: 1.5rem;
5 | padding-right: 1.5rem;
6 | padding-top: 0.75rem;
7 | padding-bottom: 1.5rem;
8 | border-top-width: 1px;
9 | background-color: #F3F4F6;
10 | border-color: #E5E7EB;
11 | }
12 |
--------------------------------------------------------------------------------
/src/ProjectTemplates/Microsoft.Extensions.AI.Templates/src/ChatWithCustomData/ChatWithCustomData-CSharp.Web/Components/Pages/Chat/ChatHeader.razor.css:
--------------------------------------------------------------------------------
1 | .chat-header-container {
2 | top: 0;
3 | padding: 1.5rem;
4 | }
5 |
6 | .chat-header-controls {
7 | margin-bottom: 1.5rem;
8 | }
9 |
10 | h1 {
11 | overflow: hidden;
12 | text-overflow: ellipsis;
13 | }
14 |
15 | .new-chat-icon {
16 | width: 1.25rem;
17 | height: 1.25rem;
18 | color: rgb(55, 65, 81);
19 | }
20 |
21 | @media (min-width: 768px) {
22 | .chat-header-container {
23 | position: sticky;
24 | }
25 | }
26 |
--------------------------------------------------------------------------------
/src/ProjectTemplates/Microsoft.Extensions.AI.Templates/src/ChatWithCustomData/ChatWithCustomData-CSharp.Web/Components/Pages/Chat/ChatSuggestions.razor.css:
--------------------------------------------------------------------------------
1 | .suggestions {
2 | text-align: right;
3 | white-space: nowrap;
4 | gap: 0.5rem;
5 | justify-content: flex-end;
6 | flex-wrap: wrap;
7 | display: flex;
8 | margin-bottom: 0.75rem;
9 | }
10 |
--------------------------------------------------------------------------------
/src/ProjectTemplates/Microsoft.Extensions.AI.Templates/src/ChatWithCustomData/ChatWithCustomData-CSharp.Web/Components/Routes.razor:
--------------------------------------------------------------------------------
1 |