mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-24 11:01:41 +01:00
fba17d77de
* 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
62 lines
957 B
SCSS
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;
|
|
}
|