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

     1  /**
     2   * Copyright (c) HashiCorp, Inc.
     3   * SPDX-License-Identifier: MPL-2.0
     4   */
     5  
     6  .message {
     7    background: $body-background-color;
     8  
     9    .message-header {
    10      background: $body-background-color;
    11      color: $text;
    12      font-size: $size-5;
    13      font-weight: $weight-semibold;
    14      padding-left: 0;
    15      padding-right: 0;
    16    }
    17  
    18    .message-body {
    19      border: 1px solid $grey-lighter;
    20      border-radius: $radius;
    21  
    22      &.is-full-bleed {
    23        padding: 0;
    24      }
    25  
    26      .table {
    27        margin-bottom: 0;
    28      }
    29    }
    30  }