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

     1  /**
     2   * Copyright (c) HashiCorp, Inc.
     3   * SPDX-License-Identifier: MPL-2.0
     4   */
     5  
     6  .legend {
     7    margin-bottom: 1em;
     8  
     9    .legend-label {
    10      font-weight: $weight-bold;
    11      margin-bottom: 0.3em;
    12    }
    13  
    14    .legend-terms {
    15      dt,
    16      dd {
    17        display: inline;
    18      }
    19  
    20      dt {
    21        font-weight: $weight-bold;
    22      }
    23  
    24      dd {
    25        margin-left: 0.5em;
    26      }
    27  
    28      .legend-term {
    29        display: inline-block;
    30        whitespace: nowrap;
    31        margin-right: 1.5em;
    32  
    33        &:last-child {
    34          margin-right: 0;
    35        }
    36      }
    37    }
    38  }