gitlab-org--gitlab-foss/app/assets/stylesheets/framework/memory_graph.scss

23 lines
318 B
SCSS
Raw Normal View History

2017-05-09 00:15:34 -04:00
.memory-graph-container {
svg {
background: $white-light;
cursor: pointer;
&:hover {
box-shadow: 0 0 4px $gray-darkest inset;
}
2017-05-09 00:15:34 -04:00
}
path {
fill: none;
stroke: $blue-500;
stroke-width: 2px;
2017-05-09 00:15:34 -04:00
}
circle {
stroke: $blue-700;
fill: $blue-700;
stroke-width: 4px;
2017-05-09 00:15:34 -04:00
}
}