github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/ui/app/styles/core/breadcrumb.scss (about)

     1  .breadcrumb {
     2    margin: 0 1.5rem;
     3  
     4    a {
     5      text-decoration: none;
     6      opacity: 0.7;
     7  
     8      &:hover {
     9        text-decoration: none;
    10        opacity: 1;
    11      }
    12    }
    13  
    14    ul {
    15      align-items: center;
    16    }
    17  
    18    li::before {
    19      font-size: x-large;
    20    }
    21  
    22    li:last-child a.active {
    23      opacity: 1;
    24    }
    25  
    26    dl dd {
    27      margin: -4px 0px;
    28      font-size: medium;
    29    }
    30  
    31    dl dt {
    32      font-size: small;
    33    }
    34  }