1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/* EmptyState component — polished empty/blank-slate placeholder */
.mui-empty-state {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 3rem 2rem;
}
/* Header slot — groups media + title + description (shadcn EmptyHeader) */
.mui-empty-state__header {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.mui-empty-state__icon {
font-size: 3rem;
margin-bottom: 1.25rem;
display: flex;
align-items: center;
justify-content: center;
color: var(--mui-text-subtle);
opacity: 0.6;
line-height: 1;
}
/* MediaVariant::Default — larger decorative block */
.mui-empty-state__icon--default {
width: 4rem;
height: 4rem;
}
/* MediaVariant::Icon — smaller glyph sized for lucide-style icons */
.mui-empty-state__icon--icon {
width: 2rem;
height: 2rem;
font-size: 1.75rem;
}
.mui-empty-state__title {
font-size: 1rem;
font-weight: 600;
margin: 0 0 0.5rem 0;
color: var(--mui-text);
}
.mui-empty-state__description {
font-size: 0.875rem;
line-height: 1.5;
color: var(--mui-text-muted);
margin: 0;
max-width: 20rem;
}
/* Content slot — holds secondary actions / body content (shadcn EmptyContent) */
.mui-empty-state__content {
margin-top: 1.5rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 0.75rem;
}
.mui-empty-state__action {
margin-top: 1.5rem;
}