github.com/anth0d/nomad@v0.0.0-20221214183521-ae3a0a2cad06/ui/app/styles/charts/topo-viz.scss (about)

     1  .topo-viz {
     2    .topo-viz-datacenters {
     3      display: flex;
     4      flex-direction: column;
     5      flex-wrap: wrap;
     6      align-content: space-between;
     7      margin-top: -0.75em;
     8  
     9      .topo-viz-datacenter {
    10        margin-top: 0.75em;
    11        margin-bottom: 0.75em;
    12        width: calc(50% - 0.75em);
    13      }
    14    }
    15  
    16    &.is-single-column .topo-viz-datacenter {
    17      width: 100%;
    18    }
    19  
    20    .topo-viz-edges {
    21      width: 100%;
    22      height: 100%;
    23      position: absolute;
    24      left: 0;
    25      top: 0;
    26      pointer-events: none;
    27      overflow: visible;
    28  
    29      .edge {
    30        stroke-width: 2;
    31        stroke: $blue;
    32        fill: none;
    33      }
    34    }
    35  }