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

     1  /**
     2   * Copyright (c) HashiCorp, Inc.
     3   * SPDX-License-Identifier: MPL-2.0
     4   */
     5  
     6  .empty-message {
     7    padding: 1.5rem;
     8    background: $white-ter;
     9    border-radius: $radius;
    10  
    11    .empty-message-headline {
    12      font-size: $size-3;
    13      color: $grey;
    14      text-align: center;
    15    }
    16  
    17    .empty-message-body {
    18      padding: 0 20%;
    19      text-align: center;
    20      color: $grey;
    21  
    22      strong {
    23        color: $grey;
    24      }
    25  
    26      &:not(:last-child) {
    27        margin-bottom: 1rem;
    28      }
    29    }
    30  
    31    &.is-hollow {
    32      background: transparent;
    33    }
    34  
    35    .terminal-container {
    36      display: flex;
    37      justify-content: center;
    38      margin-top: 1.25rem;
    39    }
    40  
    41    .terminal {
    42      background: $grey-lighter;
    43      border-radius: $radius;
    44      padding: 0.75rem 1rem;
    45  
    46      .prompt {
    47        color: $grey;
    48      }
    49    }
    50  }