Skip to content

Commit

Permalink
added minor style fixes and removed unused style code in Application.css
Browse files Browse the repository at this point in the history
  • Loading branch information
jumbodogwoof committed Feb 4, 2020
1 parent 226b06b commit def2db9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 12 deletions.
12 changes: 3 additions & 9 deletions src/Components/Application/Application.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
.application-wrapper {
max-width: 800px;
margin: 0 auto;
border: 2px solid red;
border-bottom: 1px solid #CCCCCC;
.application-wrapper{
text-align: left;
}

.pagecontainer{
display: flex;

}

3 changes: 2 additions & 1 deletion src/Components/Application/Application.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import './Application.css'
import React, { Component } from "react";
import styled from "styled-components";
import Button from "@material-ui/core/Button";
Expand Down Expand Up @@ -318,7 +319,7 @@ class Application extends Component {
<button>1. Letter of Interest</button>
<button disabled>2. Full Application</button>
</FlowSelector>
<Wrapper>
<Wrapper className="application-wrapper">
<h1>
<Button
className="all-applicants"
Expand Down
2 changes: 1 addition & 1 deletion src/Components/List/ApplicationList/ApplicationsTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export default class ApplicationList extends Component {
<TableBody>
{this.props.applications
? this.props.applications.map(application => (
<TableRow hover key={application._id}>
<TableRow key={application._id}>
<TableCell component="th" scope="row">
{application["Organization Name"]}
</TableCell>
Expand Down
2 changes: 1 addition & 1 deletion src/Components/Navigation/Navigation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const useStyles = makeStyles({
},
// Header
"& h2": {
margin: "10px 83px 16px 32px",
margin: "24px 32px 24px 32px",
fontSize: "24px",
fontWeight: "normal",
lineHeight: "28px",
Expand Down

0 comments on commit def2db9

Please sign in to comment.