aboutsummaryrefslogtreecommitdiffstats
path: root/subprojects/frontend/src/TopBar.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/frontend/src/TopBar.tsx')
-rw-r--r--subprojects/frontend/src/TopBar.tsx20
1 files changed, 11 insertions, 9 deletions
diff --git a/subprojects/frontend/src/TopBar.tsx b/subprojects/frontend/src/TopBar.tsx
index 6c9c4f7e..e41f956e 100644
--- a/subprojects/frontend/src/TopBar.tsx
+++ b/subprojects/frontend/src/TopBar.tsx
@@ -9,6 +9,7 @@ import AppBar from '@mui/material/AppBar';
9import IconButton from '@mui/material/IconButton'; 9import IconButton from '@mui/material/IconButton';
10import Stack from '@mui/material/Stack'; 10import Stack from '@mui/material/Stack';
11import Toolbar from '@mui/material/Toolbar'; 11import Toolbar from '@mui/material/Toolbar';
12import Tooltip from '@mui/material/Tooltip';
12import Typography from '@mui/material/Typography'; 13import Typography from '@mui/material/Typography';
13import { styled, useTheme } from '@mui/material/styles'; 14import { styled, useTheme } from '@mui/material/styles';
14import useMediaQuery from '@mui/material/useMediaQuery'; 15import useMediaQuery from '@mui/material/useMediaQuery';
@@ -134,7 +135,7 @@ export default observer(function TopBar(): JSX.Element {
134 py: 0.5, 135 py: 0.5,
135 }} 136 }}
136 > 137 >
137 <RefineryIcon size={24} /> 138 <RefineryIcon size={32} />
138 <Typography variant="h6" component="h1" pl={1}> 139 <Typography variant="h6" component="h1" pl={1}>
139 Refinery {import.meta.env.DEV && <DevModeBadge>Dev</DevModeBadge>} 140 Refinery {import.meta.env.DEV && <DevModeBadge>Dev</DevModeBadge>}
140 </Typography> 141 </Typography>
@@ -172,14 +173,15 @@ export default observer(function TopBar(): JSX.Element {
172 > 173 >
173 <GenerateButton editorStore={editorStore} hideWarnings={!veryLarge} /> 174 <GenerateButton editorStore={editorStore} hideWarnings={!veryLarge} />
174 {large && ( 175 {large && (
175 <IconButton 176 <Tooltip title="Check us out at GitHub">
176 aria-label="GitHub" 177 <IconButton
177 href="https://github.com/graphs4value/refinery" 178 href="https://github.com/graphs4value/refinery"
178 target="_blank" 179 target="_blank"
179 color="inherit" 180 color="inherit"
180 > 181 >
181 <GitHubIcon /> 182 <GitHubIcon />
182 </IconButton> 183 </IconButton>
184 </Tooltip>
183 )} 185 )}
184 </Stack> 186 </Stack>
185 <ToggleDarkModeButton /> 187 <ToggleDarkModeButton />