Skip to content

Commit 4493a2e

Browse files
Merge branch 'create-ai-hub-fix' of https://github.com/microsoft/Build-your-own-AI-Assistant-Solution-Accelerator into create-ai-hub-fix
2 parents 84d3fe7 + ebc5565 commit 4493a2e

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

App/frontend/src/components/DraftDocumentsView/DraftDocumentsView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ const handleCreatePDF = (): void => {
179179
return (
180180
<div className={styles.container}>
181181
<Stack className={styles.draftDocumentHeader}>
182-
<Text variant="xLarge" className={styles.draftDocumentTitle}>Draft grant proposal</Text>
182+
<h2 className={styles.draftDocumentTitle}>Draft grant proposal</h2>
183183
<ResearchTopicCard />
184184
</Stack>
185185

@@ -202,7 +202,7 @@ const handleCreatePDF = (): void => {
202202
</div>
203203

204204
<div>
205-
<h4>Title</h4>
205+
<h3>Title</h3>
206206
<div className={styles.titleTextfield}>
207207
<TextField
208208
placeholder="Topic"

App/frontend/src/components/SidebarView/ArticleView/ArticleView.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ export const ArticleView = () => {
8484
</Text>
8585

8686
<Button
87+
title="remove"
88+
aria-label="remove"
8789
icon={<DeleteRegular />}
8890
onClick={() => handleToggleFavorite(citation)}
8991
style={{

App/frontend/src/components/SidebarView/GrantView/GrantView.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ export const GrantView = () => {
8383
</Text>
8484
{/* "X" button to remove the citation */}
8585
<Button
86+
title="remove"
87+
aria-label="remove"
8688
icon={<DeleteRegular />}
8789
onClick={() => handleToggleFavorite(citation)}
8890
style={{

App/frontend/src/pages/chat/Chat.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ a {
327327

328328
/* high constrat */
329329
@media screen and (-ms-high-contrast: active), (forced-colors: active) {
330-
.clearChatBroomNoCosmos, .chatMessageStream, .chatMessageUserMessage{
330+
.clearChatBroomNoCosmos, .chatMessageStream, .chatMessageUserMessage, .citationPanel{
331331
border: 2px solid WindowText;padding: 10px;
332332
background-color: Window;
333333
color: WindowText;

App/frontend/src/pages/chat/Chat.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,11 @@ const Chat = ({ chatType }: Props) => {
339339
color: '#72716f',
340340
marginLeft: '15px',
341341
marginTop: '25px',
342-
alignSelf: 'start'
342+
alignSelf: 'start',
343+
fontWeight: '600',
344+
fontFamily: '"Segoe UI", "Segoe UI Web (West European)", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif',
345+
/* -webkit-font-smoothing: antialiased; */
346+
fontSize: '20px'
343347
}}
344348
>
345349
{title}

0 commit comments

Comments
 (0)