You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
610 B
30 lines
610 B
.s-empty {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 16rem;
|
|
padding: 2.5rem 1.5rem;
|
|
border-radius: 1.25rem;
|
|
background: rgba(175, 181, 185, 0.08);
|
|
box-sizing: border-box;
|
|
}
|
|
.s-empty__text {
|
|
margin: 0;
|
|
color: var(--color-text-muted);
|
|
font-family: "MiSans VF", "PingFang SC", sans-serif;
|
|
font-size: var(--font-18);
|
|
line-height: var(--font-26);
|
|
text-align: center;
|
|
}
|
|
|
|
@media (max-width: 576px) {
|
|
.s-empty {
|
|
min-height: 12rem;
|
|
padding: 32Px 16Px;
|
|
border-radius: 16Px;
|
|
}
|
|
.s-empty__text {
|
|
font-size: 16Px;
|
|
line-height: 24Px;
|
|
}
|
|
}
|