passing react tests

This commit is contained in:
Drew Taylor
2021-07-21 17:15:34 -07:00
parent 1bb679a3f8
commit e09ce9bd41
16 changed files with 747 additions and 332 deletions

View File

@@ -173,6 +173,28 @@ const useStyles = makeStyles((theme) => ({
width: "100%",
paddingTop: "56.25%",
},
root: {
margin: 0,
padding: theme.spacing(2),
},
closeButton: {
position: 'absolute',
right: theme.spacing(1),
top: theme.spacing(1),
color: theme.palette.grey[500],
},
markerTitle: {
margin: 5,
},
popUp: {
minHeight: "15vh",
},
popUpContent: {
"& p": {
margin: 0,
},
paddingBottom: "2vh",
},
}));
export default useStyles;