Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions src/sentry/static/sentry/app/views/onboarding/index.jsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import PropTypes from 'prop-types';
import DocumentTitle from 'react-document-title';
import styled from 'react-emotion';

import ProgressNodes from 'app/views/onboarding/progress';

Expand All @@ -11,15 +12,24 @@ class OnboardingWizard extends React.Component {

render() {
return (
<div className="onboarding-container">
<DocumentTitle title={'Sentry'} />
<div className="step-container">
<ProgressNodes params={this.props.params} />
<div>{this.props.children}</div>
<OnboardingBackground>
<div className="onboarding-container">
<DocumentTitle title={'Sentry'} />
<div className="step-container">
<ProgressNodes params={this.props.params} />
<div>{this.props.children}</div>
</div>
</div>
</div>
</OnboardingBackground>
);
}
}

const OnboardingBackground = styled('div')`
width: 100%;
height: 100%;
min-height: 100vh;
background: #fff;
`;

export default OnboardingWizard;
1 change: 1 addition & 0 deletions src/sentry/static/sentry/less/onboarding.less
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@

position: sticky;
bottom: 0;
background: white;

p {
margin-top: 20px;
Expand Down
Loading