diff --git a/src/components/AppBody.js b/src/components/AppBody.js
index 435fde4..4af87ed 100644
--- a/src/components/AppBody.js
+++ b/src/components/AppBody.js
@@ -8,4 +8,6 @@ function AppBody ({ classes, children}) {
)
}
-export default withStyles({ backgroundColor: 'white'})(AppBody)
\ No newline at end of file
+export default withStyles({ appBody : {
+ minHeight: '93vh'
+}})(AppBody)
\ No newline at end of file
diff --git a/src/components/Cards/Cards.js b/src/components/Cards/Cards.js
index c4bdd7b..79d2940 100644
--- a/src/components/Cards/Cards.js
+++ b/src/components/Cards/Cards.js
@@ -38,18 +38,19 @@ function RenderAllCards({ cards, classes }) {
const RenderAllCardsWithStyle = withStyles({
cardContainer: {
display: "flex",
- justifyContent: "center",
- paddingTop: "1rem"
+ flexWrap: 'wrap',
+ padding: "1rem",
+ height: '100%'
},
card: {
width: "15rem",
- marginRight: ".3rem",
- marginLeft: ".3rem",
+ margin: '2%',
},
cardDesc: {
height: "5rem",
textOverflow: "ellipsis",
- overflow: "auto"
+ overflow: "auto",
+ marginBottom: '1.5em'
}
})(RenderAllCards);
diff --git a/src/components/Locations/FluidPaper.js b/src/components/Locations/FluidPaper.js
index 05912e5..8f19d97 100644
--- a/src/components/Locations/FluidPaper.js
+++ b/src/components/Locations/FluidPaper.js
@@ -1,5 +1,5 @@
import React from "react";
-import { Paper, withStyles, Card } from "@material-ui/core";
+import { withStyles, Card } from "@material-ui/core";
function FluidPaper({ children, classes }) {
return