Skip to content

Commit

Permalink
Merge pull request #402 from freifunkMUC/feature/change-welcome-title…
Browse files Browse the repository at this point in the history
…-to-project-name

Change welcome title to project name
  • Loading branch information
nwaldispuehl committed Jul 2, 2023
2 parents 6297c2f + 6c0ff4d commit 3ecb9d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion website/src/components/Navigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import Typography from '@material-ui/core/Typography';
import Link from '@material-ui/core/Link';
import Button from '@material-ui/core/Button';
import Chip from '@material-ui/core/Chip';
import VpnKey from "@material-ui/icons/VpnKey";

const useStyles = makeStyles((theme) => ({
title: {
Expand All @@ -24,7 +25,7 @@ export default function Navigation() {
<Toolbar>
<Typography variant="h6" className={classes.title}>
<Link to="/" color="inherit" component={NavLink}>
Welcome
<VpnKey /> wg-access-server
</Link>
{AppState.info?.isAdmin && (
<Chip
Expand Down
3 changes: 2 additions & 1 deletion website/src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ td.MuiTableCell-root, th.MuiTableCell-root {
font-size: 100%;
}

.MuiFormHelperText-root.Mui-error svg {
/* Properly places icons in front of text, e.g. in the title line, or the add device error message. */
.MuiFormHelperText-root.Mui-error svg, h6.MuiTypography-root svg {
position: relative;
top: 0.25em;
margin-right: 8px;
Expand Down

0 comments on commit 3ecb9d0

Please sign in to comment.