Skip to content

Commit 2549eac

Browse files
committed
Minor styling tweaks.
1 parent 6b0c921 commit 2549eac

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

frontend/src/components/AppBar.jsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,11 @@ function ResponsiveAppBar({onChangeTheme}) {
6262
<Typography
6363
variant="h6"
6464
noWrap
65-
component="a"
66-
href="/"
65+
component={RouterLink}
66+
to="/"
6767
sx={{
6868
mr: 2,
6969
display: {xs: 'none', md: 'flex'},
70-
fontFamily: 'monospace',
7170
fontWeight: 700,
7271
letterSpacing: '.3rem',
7372
color: 'inherit',

frontend/src/components/LeadList.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function LeadList(props) {
4646
{!appContext.user.isAuthenticated ?
4747
<>
4848
<h1>Login</h1>
49-
<Alert severity="error">Please login to see the lead list.</Alert>
49+
<Alert variant="outlined" severity="error">Please login to see the lead list.</Alert>
5050
</>
5151
:
5252
<>
@@ -78,7 +78,7 @@ function LeadList(props) {
7878
</Table>
7979
</TableContainer>
8080
:
81-
<Alert severity="error">{error}</Alert>
81+
<Alert variant="outlined" severity="error">{error}</Alert>
8282
}
8383
</>
8484
}

frontend/src/components/Welcome.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default function DescriptionAlerts() {
66
return (
77
<>
88
<h1>Welcome</h1>
9-
<Alert severity="success">
9+
<Alert variant="outlined" severity="success">
1010
<AlertTitle>Welcome</AlertTitle>
1111
<strong>Welcome to the Leads App!</strong> Click the Leads option on the menu above to view leads.
1212
</Alert>

0 commit comments

Comments
 (0)