Skip to content
Snippets Groups Projects
Commit ae1dd297 authored by esikkala's avatar esikkala
Browse files

Test feedback page

parent 78f1f32b
No related branches found
No related tags found
No related merge requests found
...@@ -14,15 +14,11 @@ const styles = theme => ({ ...@@ -14,15 +14,11 @@ const styles = theme => ({
}, },
content: { content: {
padding: theme.spacing(1), padding: theme.spacing(1),
width: 800,
overflowY: 'auto'
},
spinnerContainer: {
display: 'flex',
width: '100%', width: '100%',
height: '100%', overflowY: 'auto',
alignItems: 'center', [theme.breakpoints.up('md')]: {
justifyContent: 'center' width: 800,
},
}, },
// https://benmarshall.me/responsive-iframes/ // https://benmarshall.me/responsive-iframes/
iframeContainer: { iframeContainer: {
...@@ -38,6 +34,13 @@ const styles = theme => ({ ...@@ -38,6 +34,13 @@ const styles = theme => ({
top: 0, top: 0,
width: '100%', width: '100%',
}, },
spinnerContainer: {
display: 'flex',
width: '100%',
height: '100%',
alignItems: 'center',
justifyContent: 'center'
},
spinner: { spinner: {
height: 40, height: 40,
width: 40, width: 40,
......
...@@ -420,7 +420,11 @@ let SemanticPortal = props => { ...@@ -420,7 +420,11 @@ let SemanticPortal = props => {
{ /* create routes for info buttons */ } { /* create routes for info buttons */ }
<Route <Route
path={`/feedback`} path={`/feedback`}
render={() => null /* <FeedbackPage /> */ } render={() =>
<div className={classes.mainContainer}>
<FeedbackPage />
</div>
}
/> />
</React.Fragment> </React.Fragment>
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment