summaryrefslogtreecommitdiff
path: root/src/components/ErrorBoundaryFallback.module.css
blob: 6133568da8a90b0f4aa6bc8e4282899ef86dfd33 (plain)
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
.root {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;

  padding: 20px;
  background: var(--color-background);
  color: var(--color-text);
  text-align: center;
}

.yacd {
  color: #2a477a;
  opacity: 0.6;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.link {
  display: inline-flex;
  align-items: center;

  color: var(--color-text-secondary);
  &:hover,
  &:active {
    color: #387cec;
  }

  svg {
    margin-right: 5px;
  }
}