33 lines
560 B
CSS
33 lines
560 B
CSS
.emptyScreen {
|
|
display: flex;
|
|
min-height: 100dvh;
|
|
box-sizing: border-box;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
gap: 18px;
|
|
padding: 24px;
|
|
background: #0d0b14;
|
|
color: #ffffff;
|
|
}
|
|
|
|
.backButton {
|
|
min-height: 44px;
|
|
padding: 0 18px;
|
|
border: 0;
|
|
border-radius: 999px;
|
|
background: rgba(255, 255, 255, 0.92);
|
|
color: #191316;
|
|
cursor: pointer;
|
|
font: inherit;
|
|
font-size: 15px;
|
|
font-weight: 800;
|
|
}
|
|
|
|
.emptyText {
|
|
margin: 0;
|
|
color: rgba(255, 255, 255, 0.78);
|
|
font-size: 16px;
|
|
font-weight: 700;
|
|
}
|