Skip to content

Commit

Permalink
Make font size bigger and update GH link
Browse files Browse the repository at this point in the history
  • Loading branch information
jafeltra committed Sep 19, 2023
1 parent d44ea45 commit c82aa94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions src/components/FSHControls.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ const useStyles = makeStyles((theme) => ({
},
dialogActionsMessage: {
fontStyle: 'italic',
fontSize: 'small',
padding: '6px 8px'
}
}));
Expand Down Expand Up @@ -435,7 +434,7 @@ export default function FSHControls(props) {
<DialogActions className={classes.dialogActions}>
<div className={classes.dialogActionsMessage}>
Feel like an example is missing? Add to our collection of examples on{' '}
<Link href="https://github.com/FSHSchool/FSHOnline-Examples">GitHub</Link>!
<Link href="https://github.com/FSHSchool/FSHOnline-Examples#readme">GitHub</Link>!
</div>
<div>
<Button onClick={handleCopyToClipboard} color="primary">
Expand Down
2 changes: 1 addition & 1 deletion src/tests/components/FSHControls.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -464,7 +464,7 @@ it('should include a link to the examples repo', () => {
expect(exampleRepoText).toBeInTheDocument();
const exampleRepoUrl = getByRole('link');
expect(exampleRepoUrl).toBeInTheDocument();
expect(exampleRepoUrl).toHaveAttribute('href', 'https://github.com/FSHSchool/FSHOnline-Examples');
expect(exampleRepoUrl).toHaveAttribute('href', 'https://github.com/FSHSchool/FSHOnline-Examples#readme');
});

it.skip('should populate editor when examples are collected', async () => {
Expand Down

0 comments on commit c82aa94

Please sign in to comment.