_ErrorBoundary.scss 486 B

12345678910111213141516171819202122
  1. .as-error-fallback {
  2. align-items: center;
  3. border-radius: $border-radius;
  4. box-shadow: inset $inner-box-shadow;
  5. color: var(--newtab-text-conditional-color);
  6. display: flex;
  7. flex-direction: column;
  8. font-size: $error-fallback-font-size;
  9. justify-content: center;
  10. justify-items: center;
  11. line-height: $error-fallback-line-height;
  12. &.borderless-error {
  13. box-shadow: none;
  14. }
  15. a {
  16. color: var(--newtab-text-conditional-color);
  17. text-decoration: underline;
  18. }
  19. }