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

     1  /**
     2   * Copyright (c) HashiCorp, Inc.
     3   * SPDX-License-Identifier: MPL-2.0
     4   */
     5  
     6  .breadcrumb {
     7    margin: 0 1.5rem;
     8  
     9    a {
    10      text-decoration: none;
    11      opacity: 0.7;
    12  
    13      &:hover {
    14        text-decoration: none;
    15        opacity: 1;
    16      }
    17    }
    18  
    19    ul {
    20      align-items: center;
    21    }
    22  
    23    li::before {
    24      font-size: x-large;
    25    }
    26  
    27    li:last-child a.active {
    28      opacity: 1;
    29    }
    30  
    31    dl dd {
    32      margin: -4px 0px;
    33      font-size: medium;
    34    }
    35  
    36    dl dt {
    37      font-size: small;
    38    }
    39  }