diff --git a/src/app/Footer.css b/src/app/Footer.css new file mode 100644 index 0000000..0efe2b4 --- /dev/null +++ b/src/app/Footer.css @@ -0,0 +1,16 @@ +footer,header { + background:lightgray; + } + + +footer .things{ + display: inline-flex; + padding-right: 10px; +} + +.things .child{ + background: #a2a1a1; + padding-left: 5px; + padding-right: 5px; + font-weight: bold +} \ No newline at end of file diff --git a/src/app/Footer.js b/src/app/Footer.js new file mode 100644 index 0000000..79a3329 --- /dev/null +++ b/src/app/Footer.js @@ -0,0 +1,34 @@ +import React, { Component } from 'react'; +import './Footer.css'; + +export default class Footer extends Component { + constructor(props) { + super(props); + } + + render() { + return ( + + ); + } +} \ No newline at end of file diff --git a/src/app/SearchField.js b/src/app/SearchField.js index c9e255c..3077330 100644 --- a/src/app/SearchField.js +++ b/src/app/SearchField.js @@ -2,6 +2,7 @@ import React, { Component } from 'react'; import axios from 'axios'; import PawnedListItem from './PawnedListItem'; import './SearchField.css'; +import Footer from './Footer'; export default class SearchField extends Component { @@ -34,24 +35,29 @@ export default class SearchField extends Component { } return ( -