Skip to content

Commit

Permalink
Merge pull request #1220 from LiskHQ/1127-not-scrollable-sign-in-dele…
Browse files Browse the repository at this point in the history
…gate-registration

Scrollable sign in in register delegate - Closes #1127
  • Loading branch information
faival committed Aug 30, 2018
2 parents e7fe7dd + 0bf0739 commit 9fa4c5a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/components/registerDelegate/registerDelegate.css
Expand Up @@ -12,7 +12,7 @@
width: 100%;
margin: 0;
padding: var(--register-delegate-vertical-padding) 0;
overflow: hidden;
overflow-y: auto;
}

.background {
Expand All @@ -24,6 +24,7 @@

.multiStep {
width: 100%;
margin-bottom: -48px;

& > section {
display: flex;
Expand Down
5 changes: 3 additions & 2 deletions src/components/registerDelegate/steps/passphraseSteps.css
Expand Up @@ -45,13 +45,14 @@
}

&::before {
height: 200%;
height: 100%;
width: 100%;
content: '';
position: absolute;
background-color: var(--color-form-bg);
left: 0;
bottom: calc(-150% + 144px);
top: 250px;
bottom: 0;
}
}

Expand Down

0 comments on commit 9fa4c5a

Please sign in to comment.