pussy-ts/src/components/ErrorBoundary/ErrorScreen/ErrorScreen.module.scss

.wrapper {
  text-align: center;
  min-height: 100vh;

  img {
    width: 135px;
    margin-top: 10%;
    margin-bottom: 25px;
  }

  p,
  pre {
    color: #777777;
    margin-bottom: 18px;
  }

  .errorDetails {
    margin-top: 40px;

    pre {
      line-height: 20px;

      &:nth-of-type(2) {
        display: inline-block;
      }
    }
  }

  .stack {
    text-align: left;
  }

  .btnGoBack {
    margin-right: 48px;
  }

  > footer {
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    margin-bottom: 10px;
  }

  @media (max-width: 768px) {
    display: flex;
    flex-direction: column;
    align-items: center;

    .btnGoBack {
      display: none;
    }
    button {
      margin-top: auto;
    }
  }
}

Synonyms

cyb/src/components/ErrorBoundary/ErrorScreen/ErrorScreen.module.scss

Neighbours