mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
* styling updates Co-authored-by: Alex Donesky <adonesky@gmail.com> Co-authored-by: George Marshall <george.marshall@consensys.net> Co-authored-by: David Walsh <davidwalsh83@gmail.com>
58 lines
932 B
SCSS
58 lines
932 B
SCSS
.loading-overlay {
|
|
top: 0;
|
|
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: var(--color-background-alternative);
|
|
opacity: 0.8;
|
|
|
|
&__screen-content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
&__container {
|
|
position: absolute;
|
|
top: 50%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
transform: translateY(-50%);
|
|
}
|
|
|
|
&__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;
|
|
}
|
|
}
|