github.com/hernad/nomad@v1.6.112/ui/app/styles/components/error-container.scss (about)

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