Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/framework/memory_graph.scss')
-rw-r--r--app/assets/stylesheets/framework/memory_graph.scss16
1 files changed, 16 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/memory_graph.scss b/app/assets/stylesheets/framework/memory_graph.scss
new file mode 100644
index 00000000000..8473f2ef094
--- /dev/null
+++ b/app/assets/stylesheets/framework/memory_graph.scss
@@ -0,0 +1,16 @@
+.memory-graph-container {
+ svg {
+ background: $white-light;
+ }
+
+ path {
+ fill: none;
+ stroke: $blue-500;
+ stroke-width: 1px;
+ }
+
+ circle {
+ stroke: $blue-700;
+ fill: $blue-700;
+ }
+}