Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix: misc ui changes (Gitcoin) #14

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Components/Global/Body.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ class Body extends Component {
static propTypes = {
content: Proptypes.object.isRequired,//libreria.tipodeObjeto.EsRequeridoOÑo
}

render() {
const {content} =this.props
const {content} =this.props
return (
<div>
{content}
Expand All @@ -19,4 +19,4 @@ class Body extends Component {
}
}

export default Body;
export default Body;
10 changes: 5 additions & 5 deletions src/Components/Global/Header.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,31 +139,31 @@ class Header extends Component {

const mainList = (
<List component="nav">
<ListItem button>
<ListItem >
<ListItemIcon>
<LocalHospitalIcon />
</ListItemIcon>
<Link to="/summary">
<ListItemText primary="Summary" />
</Link>
</ListItem>
<ListItem button>
<ListItem >
<ListItemIcon>
<TimelineIcon />
</ListItemIcon>
<Link to="/timeline">
<ListItemText primary="Historial" />
</Link>
</ListItem>
<ListItem button>
<ListItem >
<ListItemIcon>
<ContactsIcon />
</ListItemIcon>
<Link to="/contacts">
<ListItemText primary="Contacts" />
</Link>
</ListItem>
<ListItem button>
<ListItem >
<ListItemIcon>
<LogoutIcon />
</ListItemIcon>
Expand Down Expand Up @@ -227,7 +227,7 @@ class Header extends Component {
{auth && (
<div>
<Button aria-haspopup="true" color="inherit">
<Link to="/">
<Link to="/">
Profile&nbsp;
<AccountCircle />
</Link>
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Profile/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class Profile extends React.Component {
const { classes } = this.props;

return (
<div className={classes.root} style={{marginTop: 60}}>
<div className={classes.root} style={{marginTop: 60, position: "absolute", left: 0, right: 0, bottom: 0}}>
<Grid container spacing={24}>
<Grid item xs={12}>
<Paper className={classes.paper}>
Expand Down