Skip to content

Commit

Permalink
ImportSignupFlow: Fix whitespace issues around the error notice
Browse files Browse the repository at this point in the history
  • Loading branch information
spen committed Mar 25, 2019
1 parent 2a9f567 commit e0d120f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 3 additions & 1 deletion client/signup/steps/import-url/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,9 @@ class ImportURLStepComponent extends Component {
>
{ urlMessage }
</Notice>
) : null }
) : (
<div className="import-url__notice-placeholder" />
) }
</div>

<div className="import-url__example">
Expand Down
6 changes: 5 additions & 1 deletion client/signup/steps/import-url/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@
display: flex;
flex-flow: row wrap;
justify-content: center;
margin-top: 80px;
margin-bottom: 48px;
position: relative;

Expand Down Expand Up @@ -91,3 +90,8 @@
}
}
}

.import-url__notice-placeholder {
height: 47px;
margin: 16px auto;
}

0 comments on commit e0d120f

Please sign in to comment.