github.com/grafana/pyroscope@v1.18.0/public/app/pages/ContinuousSingleView.module.css (about)

     1  @keyframes fadeIn {
     2    0% {
     3      opacity: 0;
     4    }
     5    100% {
     6      opacity: 1;
     7    }
     8  }
     9  
    10  .flamegraphContainer {
    11    display: flex;
    12    flex-direction: row;
    13    justify-content: space-between;
    14    animation: fadeIn 1s;
    15  }
    16  
    17  .flamegraphComponent {
    18    flex-basis: 50%;
    19    flex-grow: 1;
    20    flex-shrink: 0;
    21  }
    22  
    23  .extraPanel {
    24    flex-basis: 50%;
    25    flex-grow: 1;
    26    flex-shrink: 0;
    27  
    28    margin-left: 16px;
    29    border-left: 2px solid #000;
    30  }