summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/framework/memory_graph.scss
blob: 81cdf6b59e436f45b4eec17716811c7816964196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
.memory-graph-container {
  svg {
    background: $white-light;
    cursor: pointer;

    &:hover {
      box-shadow: 0 0 4px $gray-darkest inset;
    }
  }

  path {
    fill: none;
    stroke: $blue-500;
    stroke-width: 2px;
  }

  circle {
    stroke: $blue-700;
    fill: $blue-700;
    stroke-width: 4px;
  }
}