Skip to content

Commit

Permalink
Fixed minor issue with Footer.js
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloCanalSuarez committed Apr 24, 2020
1 parent cc44662 commit 9a1ef3a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ const useStyles = (theme) => ({
theme.palette.type === 'light' ? theme.palette.grey[50] : theme.palette.grey[900],
backgroundSize: 'cover',
backgroundPosition: 'center',
// height: '90vh',
minHeight: '90vh',
},
});
Expand Down
7 changes: 3 additions & 4 deletions src/components/ui/ImportRouteCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import React, { Component } from 'react'
import { Card, CardContent, IconButton, CardMedia, Typography, makeStyles, CardActions, Collapse, Box } from '@material-ui/core';
import MapSnapshot from '../map/MapSnapshot';
import ExpandMoreIcon from '@material-ui/icons/ExpandMore';
import MoreVertIcon from '@material-ui/icons/MoreVert';
import clsx from 'clsx';

function ImportRouteCard(props) {
Expand Down Expand Up @@ -40,10 +39,10 @@ function ImportRouteCard(props) {
<Collapse in={expanded} timeout="auto" unmountOnExit>
<CardContent >
<Box fontSize="h6.fontSize" fontWeight="fontWeightBold">
Description:
Description:
</Box>
<Box fontWeight="fontWeightRegular">
{route.getDescription()}
<Box display="block" fontWeight="fontWeightRegular">
{route.getDescription()}
</Box>
</CardContent>
</Collapse>
Expand Down
1 change: 0 additions & 1 deletion src/components/ui/main/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export default function StickyFooter() {

return (
<div >
<CssBaseline />
<footer className={classes.footer}>
<Container maxWidth="sm">
<Typography variant="h6">ViaDe En3B1</Typography>
Expand Down

0 comments on commit 9a1ef3a

Please sign in to comment.