1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 11:46:13 +02:00
metamask-extension/ui/app/css/itcss/components/loading-overlay.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

62 lines
957 B
SCSS

.loading-overlay {
left: 0;
z-index: 51;
position: fixed;
flex-direction: column;
display: flex;
justify-content: center;
align-items: center;
flex: 1 1 auto;
width: 100%;
height: 100%;
background: rgba(255, 255, 255, .8);
&__screen-content {
display: flex;
flex-direction: column;
align-items: center;
}
&__container {
position: absolute;
top: 33%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
&__message {
margin-top: 32px;
font-weight: 400;
font-size: 20px;
color: $manatee;
}
&__error-screen {
display: flex;
flex-direction: column;
align-items: center;
height: 160px;
justify-content: space-evenly;
}
&__error-buttons {
display: flex;
flex-direction: row;
button {
margin: 5px;
}
}
&__emoji {
font-size: 32px;
}
}
.spinner {
height: 58px;
width: 58px;
}