1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-24 04:13:27 +02:00
metamask-extension/ui/app/components/pages/first-time-flow/welcome/index.scss
Dan J Miller cb2698d20e First time flow updates (#6192)
* Action select step of onboarding flow added.

* Update navigation on create and import password screens.

* Adds terms of service checkbox to create and import account screens.

* Add security warning to jazzicon intro step

* Update and streamline unique image to confirm seed steps of first time flow.

* UI touch ups to welcome screen.

* UI touch up on select action page

* Fix first time import flow.

* Add end of flow screen to first time flow

* Replace unique image screen with updated fishing warning screen.

* Update e2e tests for onboarding flow changes.

* Add required translations to onboarding flow.

* Update design of select action screen to emphasize create new wallet option.

* Clean up onboarding flow code.

* Remove notice related code from first-time-flow directory.

* Use updater function argument in new-account.component
2019-02-27 11:16:41 -03:30

43 lines
678 B
SCSS

.welcome-page {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
max-width: 442px;
padding: 0 18px;
color: black;
&__wrapper {
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-start;
height: 100%;
margin-top: 110px;
}
&__header {
font-size: 28px;
margin-bottom: 22px;
margin-top: 50px;
}
&__description {
text-align: center;
div {
font-size: 16px;
}
@media screen and (max-width: 575px) {
font-size: .9rem;
}
}
.first-time-flow__button {
width: 184px;
font-weight: 500;
margin-top: 44px;
}
}