Skip to content

Commit c36864a

Browse files
committed
fix title and logo text
1 parent 15a797a commit c36864a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/Header/HeaderView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ const Header = ({ classes, isSidebarOpened, toggleSidebar, ...props }) => (
104104
/>
105105
)}
106106
</IconButton>
107-
<Typography className={classes.logotype}>Material Dashboard</Typography>
107+
<Typography variant="h6" weight="medium" className={classes.logotype}>Material Dashboard</Typography>
108108
<div className={classes.grow} />
109109
<div
110110
className={classNames(classes.search, {

src/components/PageTitle/PageTitle.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Button, Typography, withStyles } from "@material-ui/core";
33

44
const PageTitle = ({ classes, ...props }) => (
55
<div className={classes.pageTitleContainer}>
6-
<Typography className={classes.typo} variant="h4">
6+
<Typography className={classes.typo} variant="h2">
77
{props.title}
88
</Typography>
99
{props.button && (

0 commit comments

Comments
 (0)