github.com/pyroscope-io/pyroscope@v0.37.3-0.20230725203016-5f6947968bd0/webapp/javascript/components/ChartTitle.module.scss (about)

     1  .chartTitle {
     2    display: flex;
     3    align-items: center;
     4    justify-content: center;
     5    height: 20px;
     6    margin-bottom: 5px;
     7  
     8    .colorOrIcon {
     9      display: inline-block;
    10      align-self: center;
    11      width: 12px;
    12      height: 12px;
    13      margin: 0 5px;
    14      border-radius: 2px;
    15  
    16      &.icon {
    17        height: 20px;
    18        width: 20px;
    19  
    20        svg {
    21          vertical-align: initial;
    22        }
    23      }
    24    }
    25  
    26    .title {
    27      display: flex;
    28      text-align: center;
    29      margin: 0;
    30      font-size: 18px;
    31      font-weight: 600;
    32      line-height: 18px;
    33    }
    34  }