diff --git a/client/src/components/QuizInstructions/index.js b/client/src/components/QuizInstructions/index.js index 3b40ddc..9b5cb63 100644 --- a/client/src/components/QuizInstructions/index.js +++ b/client/src/components/QuizInstructions/index.js @@ -45,6 +45,7 @@ class QuizInstructions extends Component { fontSize="14px" padding="2px 2px 0px 4px" desktoppadding="2px 2px 0px 4px" + desktopmargin="22px 20px 0px 0px" to="/quiz" > skip diff --git a/client/src/components/Results/index.js b/client/src/components/Results/index.js index 6d11d40..b35a6eb 100644 --- a/client/src/components/Results/index.js +++ b/client/src/components/Results/index.js @@ -24,7 +24,9 @@ class Results extends Component { const id = this.calId() return ( - + {this.props.location.state && !this.props.location.state.flag ? ( + + ) : null}
Result
@@ -39,11 +41,11 @@ class Results extends Component { ) : null )} See what might work for you - {this.props.location.state && this.props.location.state.flag ? ( + {this.props.location.state && !this.props.location.state.flag ? null : ( - ) : null} + )}
)