47 lines
780 B
SCSS

.wrapper {
display: flex;
flex-direction: column;
align-items: center;
max-width: 600px;
padding: 24px;
gap: 16px;
text-align: center;
color: var(--color-text-primary);
}
.content {
max-width: 370px;
svg,
img {
width: 200px;
aspect-ratio: 1;
object-fit: contain;
max-width: 100%;
margin-bottom: 16px;
}
h3 {
font-size: 17px;
font-weight: 500;
text-wrap: balance;
line-height: 1.2;
}
p {
margin-top: 8px;
font-size: 15px;
color: var(--color-text-secondary);
text-wrap: pretty;
}
}
[data-color-scheme='dark'] .defaultImage {
--color-skin-1: #3a3a50;
--color-skin-2: #67678e;
--color-skin-3: #44445f;
--color-outline: #21212c;
--color-shadow: #181820;
--color-highlight: #b2b1c8;
}