Bin
2025-12-16 9e0b2ba2c317b1a86212f24cbae3195ad1f3dbfa
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
.empty-state-default {
  max-width: 40rem;
  background: var(--color-primary-background);
  border: 1px solid var(--color-primary-border-subtlest);
  padding: 2rem;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 
  &__icon {
    margin-bottom: 0.75rem;
    background: var(--color-primary-emphasis);
    padding: 0.5rem;
    display: flex;
    border-radius: 2rem;
 
    & svg path {
      fill: var(--color-primary-icon);
    }
  }
 
  &__action {
    margin-bottom: 1.25rem;
  }
 
  &__title {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-primary-content);
    margin-bottom: 1rem;
    text-align: center;
  }
 
  &__description {
    font-size: 1rem;
    color: var(--color-neutral-content-subtle);
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.5em;
  }
 
  &__footer {
    font-size: 0.75rem;
    color: var(--color-neutral-content);
    text-align: center;
    line-height: 1.5em;
  }
 
  &__footer a {
    color: var(--grape_700);
    text-decoration: underline;
 
    &:hover {
      text-decoration: none;
    }
  }
}