mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-15 06:49:47 +00:00
33 lines
660 B
SCSS
33 lines
660 B
SCSS
.load-screen {
|
|
color: white;
|
|
background: var(--color-primary);
|
|
background-size: cover;
|
|
min-height: 100vh;
|
|
min-width: 100vw;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.load-screen__title {
|
|
font-family: 'metropolis-bold';
|
|
font-size: 60px;
|
|
line-height: 100px;
|
|
}
|
|
|
|
.load-screen__message {
|
|
font-family: 'metropolis-semibold';
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
margin-top: $spacing-vertical * 2/3;
|
|
text-align: center;
|
|
}
|
|
|
|
.load-screen__details {
|
|
font-family: 12px 'metropolis-medium';
|
|
font-size: 12px;
|
|
line-height: 1;
|
|
padding-top: $spacing-vertical * 2/3;
|
|
max-width: 400px;
|
|
}
|