summaryrefslogtreecommitdiffstats
path: root/browser/components/newtab/content-src/components/ErrorBoundary/_ErrorBoundary.scss
blob: cc54f78a27d5019461d8a79af3e344e56877cdbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
.as-error-fallback {
  align-items: center;
  border-radius: $border-radius;
  box-shadow: inset $inner-box-shadow;
  color: var(--newtab-text-secondary-color);
  display: flex;
  flex-direction: column;
  font-size: $error-fallback-font-size;
  justify-content: center;
  justify-items: center;
  line-height: $error-fallback-line-height;

  &.borderless-error {
    box-shadow: none;
  }

  a {
    color: var(--newtab-text-secondary-color);
    text-decoration: underline;
  }
}