blob: bc8d14aa0fcf06c272be33a1123febf7aa213371 [file] [log] [blame]
Matteo Scandolo70bc45f2016-05-06 14:10:11 -07001@import '../../../../style/sass/lib/_variables.scss';
2
3#xosServiceGrid {
Matteo Scandolo819d13d2016-05-06 16:52:58 -07004 service-graph {
5 display: block;
6 width: 100%;
7 height: 600px;
8 }
9
10 .node {
11 stroke: $brand-primary;
12 fill: white;
13 }
14
15 .node.xos {
16 fill: $brand-danger;
17 }
18
19 .link {
20 stroke: black;
21 stroke-width: 2px;
22 }
Matteo Scandolo70bc45f2016-05-06 14:10:11 -070023}