github.com/manicqin/nomad@v0.9.5/ui/app/styles/components/error-container.scss (about)

     1  .error-container {
     2    width: 100%;
     3    height: 100%;
     4    padding-top: 25vh;
     5    display: flex;
     6    flex-direction: column;
     7    justify-content: start;
     8    align-items: center;
     9    background: $white-ter;
    10  
    11    .error-message {
    12      width: 95vw;
    13      max-width: 600px;
    14  
    15      .title {
    16        text-align: center;
    17      }
    18    }
    19  
    20    .error-stack-trace {
    21      border: 1px solid $grey-lighter;
    22      border-radius: $radius;
    23      background: $white;
    24    }
    25  
    26    .error-links {
    27      padding-top: 15px;
    28      margin-top: 15px;
    29      border-top: 1px solid $grey-lighter;
    30      width: 95vw;
    31      max-width: 600px;
    32      text-align: center;
    33    }
    34  }