Files
Stirling-PDF/frontend/shared/components/EmptyState.css
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

58 lines
1005 B
CSS
Raw Normal View History

2026-06-02 17:08:24 +01:00
.sui-empty {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: var(--space-6) var(--space-4);
gap: var(--space-2);
}
.sui-empty--compact {
padding: var(--space-4) var(--space-3);
}
.sui-empty__icon {
display: inline-flex;
margin-bottom: var(--space-2);
color: var(--color-text-4);
}
.sui-empty__eyebrow {
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.06em;
color: var(--color-blue);
}
.sui-empty__title {
margin: 0;
font-size: 1.125rem;
font-weight: 600;
color: var(--color-text-1);
}
.sui-empty--compact .sui-empty__title {
font-size: 0.9375rem;
}
.sui-empty__copy {
margin: 0;
max-width: 32rem;
font-size: 0.875rem;
line-height: 1.5;
color: var(--color-text-3);
}
.sui-empty--compact .sui-empty__copy {
font-size: 0.8125rem;
}
.sui-empty__actions {
margin-top: var(--space-2);
display: flex;
gap: var(--space-2);
flex-wrap: wrap;
justify-content: center;
}