Skip to content

Commit dddb715

Browse files
committed
small ui improvement
1 parent d4c6f36 commit dddb715

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

client/src/SamplesPage.jsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import {
1010
import {Link16Regular, Link20Regular} from '@fluentui/react-icons';
1111
import ReactMarkdown from 'react-markdown';
1212

13+
import GitHash from './components/GitVersion';
1314
import PageTitle from './components/PageTitle';
1415

1516
import styles from './assets/styles/SamplesPage.module.css';
@@ -36,6 +37,7 @@ const SamplesPage = () => {
3637
return (
3738
<>
3839
<PageTitle />
40+
3941
<div className={styles.samples}>
4042
{loading && <p>Loading...</p>}
4143
{!loading &&
@@ -66,6 +68,8 @@ const SamplesPage = () => {
6668
})
6769
}
6870
</div>
71+
72+
<GitHash />
6973
</>
7074
);
7175
};

client/src/SearchPage.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,7 @@ const SearchPage = () => {
162162
return (
163163
<>
164164
<PageTitle />
165+
165166
<div className={styles.buttonsArea}>
166167
<TeachingPopover defaultOpen={popOverOpen}>
167168
<TeachingPopoverTrigger>

client/src/components/GitVersion.module.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
width: 100%;
55
text-align: center;
66
font-size: smaller;
7-
color: #c1c1c1; /* Optional: Add a background color */
7+
color: #c1c1c1;
88
}

0 commit comments

Comments
 (0)