1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 20:05:27 +02:00
metamask-extension/ui/app/components/pages/first-time-flow/welcome/index.scss
Alexander Tseung fba17d77de Refactor first time flow, remove seed phrase from state (#5994)
* Refactor and fix styling for first time flow. Remove seed phrase from persisted metamask state

* Fix linting and tests

* Fix translations, initialization notice routing

* Fix drizzle tests

* Fix e2e tests

* Fix integration tests

* Fix styling

* Fix migration naming from 030 to 031

* Open extension in browser when user has not completed onboarding
2019-01-23 11:55:34 -03:30

44 lines
801 B
SCSS

.welcome-page {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 400px;
padding: 0 18px;
&__wrapper {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
height: 100%;
}
&__header {
font-size: 1.5rem;
margin-bottom: 14px;
}
&__description {
text-align: center;
@media screen and (max-width: 575px) {
font-size: .9rem;
}
}
&__button {
height: 54px;
width: 198px;
font-family: Roboto;
box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .14);
color: $white;
font-size: 1.25rem;
font-weight: 500;
text-transform: uppercase;
margin: 35px 0 14px;
transition: 200ms ease-in-out;
background-color: rgba(247, 134, 28, .9);
}
}