Skip to content

Commit 6037b59

Browse files
committed
changed icon for web page, changed case of appearance of words in analysis panel.
1 parent 85242cd commit 6037b59

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

app/frontend/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/x-icon" href="/48_simple.png" />
5+
<link rel="icon" type="image/x-icon" href="public/48_simple.png" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>SLS ActuarialGPT</title>
88
</head>
99
<body>
1010
<div id="root"></div>
1111
<script type="module" src="/src/index.tsx"></script>
1212
</body>
13-
</html>
13+
</html>

app/frontend/src/components/AnalysisPanel/AnalysisPanel.module.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
margin: auto;
1717
margin-left: 1.25em;
1818
min-height: 3.125em;
19-
border-left: 0.0625em solid #123bb6;
19+
border-left: 0.0625em solid #0075c9;
2020
padding: 0 0 1.875em 1.875em;
2121
position: relative;
2222
}
@@ -32,13 +32,13 @@
3232
content: " ";
3333
border: 8px solid #d1dbfa;
3434
border-radius: 500%;
35-
background: #123bb6;
35+
background: #0075c9;
3636
height: 20px;
3737
width: 20px;
3838
}
3939

4040
.tStep {
41-
color: #123bb6;
41+
color: #0075c9;
4242
position: relative;
4343
font-size: 0.875em;
4444
margin-bottom: 0.5em;

app/frontend/src/components/AnalysisPanel/AnalysisPanel.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ export const AnalysisPanel = ({ answer, activeTab, activeCitation, citationHeigh
7878
>
7979
<PivotItem
8080
itemKey={AnalysisPanelTabs.ThoughtProcessTab}
81-
headerText="Thought process"
81+
headerText="Thought Process"
8282
headerButtonProps={isDisabledThoughtProcessTab ? pivotItemDisabledStyle : undefined}
8383
>
8484
<ThoughtProcess thoughts={answer.context.thoughts || []} />
8585
</PivotItem>
8686
<PivotItem
8787
itemKey={AnalysisPanelTabs.SupportingContentTab}
88-
headerText="Supporting content"
88+
headerText="Supporting Content"
8989
headerButtonProps={isDisabledSupportingContentTab ? pivotItemDisabledStyle : undefined}
9090
>
9191
<SupportingContent supportingContent={answer.context.data_points} />

app/frontend/src/components/SupportingContent/SupportingContent.module.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121

2222
.supportingContentItemHeader {
2323
margin: 0;
24+
color: #0075c9;
2425
}
2526

2627
.supportingContentItemText {

0 commit comments

Comments
 (0)