Remove border radius, fix width issue for unlock step

This commit is contained in:
fragosti
2018-06-21 11:33:47 -07:00
parent 8e2c0bb977
commit d963941be0
4 changed files with 12 additions and 5 deletions

View File

@@ -67,7 +67,7 @@ export class OnboardingFlow extends React.Component<OnboardingFlowProps> {
const step = steps[stepIndex];
const isLastStep = steps.length - 1 === stepIndex;
return (
<Container marginLeft="30px">
<Container marginLeft="30px" maxWidth={350}>
<OnboardingTooltip
title={step.title}
content={step.content}
@@ -101,6 +101,7 @@ export class OnboardingFlow extends React.Component<OnboardingFlowProps> {
onClickBack={this._goToPrevStep.bind(this)}
continueButtonDisplay={step.continueButtonDisplay}
continueButtonText={step.continueButtonText}
borderRadius="10px 10px 0px 0px"
/>
</Container>
);