-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathEmptyState.module.scss
80 lines (66 loc) · 1.31 KB
/
EmptyState.module.scss
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
70
71
72
73
74
75
76
77
78
79
80
$base-class: 'empty-state';
.#{$base-class} {
display: flex;
align-items: center;
&--centered {
justify-content: center;
width: 100%;
height: 100%;
}
&--inline {
flex-direction: row;
justify-content: space-between;
}
&--full {
flex-direction: column;
justify-content: center;
padding: var(--spacing-16) var(--spacing-6);
@media (width <= 600px) {
padding: var(--spacing-8) var(--spacing-6);
}
}
&__image {
margin-bottom: var(--spacing-6);
border-radius: var(--radius-4);
width: auto;
max-width: min(100%, 600px);
height: auto;
max-height: min(100%, 300px);
object-fit: contain;
}
&__icon {
&--full {
margin-bottom: var(--spacing-2);
}
}
&__description {
max-width: 600px;
text-align: center;
}
&__content-inline {
display: flex;
gap: var(--spacing-2);
align-items: center;
}
&__title {
margin: 0;
margin-bottom: var(--spacing-2);
max-width: 600px;
text-align: center;
}
&__actions {
display: flex;
gap: var(--spacing-2);
margin-top: var(--spacing-4);
&--inline {
margin-top: 0;
}
@media (width <= 600px) {
flex-direction: column;
margin-top: var(--spacing-2);
&--inline {
margin-top: 0;
}
}
}
}