diff --git a/frontend/src/app/components/clipboard/clipboard.component.html b/frontend/src/app/components/clipboard/clipboard.component.html
index 1e88b7b7f..ec8802634 100644
--- a/frontend/src/app/components/clipboard/clipboard.component.html
+++ b/frontend/src/app/components/clipboard/clipboard.component.html
@@ -1,5 +1,15 @@
-
-
+
+
+
+
+
+
+
+
+
diff --git a/frontend/src/app/components/clipboard/clipboard.component.ts b/frontend/src/app/components/clipboard/clipboard.component.ts
index e6a5c0e6e..7fbffdca3 100644
--- a/frontend/src/app/components/clipboard/clipboard.component.ts
+++ b/frontend/src/app/components/clipboard/clipboard.component.ts
@@ -11,6 +11,8 @@ import * as tlite from 'tlite';
export class ClipboardComponent implements AfterViewInit {
@ViewChild('btn') btn: ElementRef;
@ViewChild('buttonWrapper') buttonWrapper: ElementRef;
+ @Input() button = false;
+ @Input() class = 'btn btn-secondary ml-1';
@Input() size: 'small' | 'normal' = 'normal';
@Input() text: string;
@Input() leftPadding = true;
diff --git a/frontend/src/app/lightning/group/group.component.html b/frontend/src/app/lightning/group/group.component.html
index b5745d0ca..fdc79b692 100644
--- a/frontend/src/app/lightning/group/group.component.html
+++ b/frontend/src/app/lightning/group/group.component.html
@@ -99,9 +99,7 @@
-
-
-
+
diff --git a/frontend/src/app/lightning/node/node.component.html b/frontend/src/app/lightning/node/node.component.html
index 0c8451d44..f9cc3c0a6 100644
--- a/frontend/src/app/lightning/node/node.component.html
+++ b/frontend/src/app/lightning/node/node.component.html
@@ -120,9 +120,7 @@
-
-
-
+
@@ -230,9 +228,7 @@
-
-
-
+
diff --git a/frontend/src/styles.scss b/frontend/src/styles.scss
index 65293098d..d903c6076 100644
--- a/frontend/src/styles.scss
+++ b/frontend/src/styles.scss
@@ -10,7 +10,8 @@ $nav-tabs-link-active-bg: #11131f;
$primary: #105fb0;
$secondary: #2d3348;
$success: #1a9436;
-$info: #1bd8f4;
+$info: #5f4ab8;
+$light: #744ad1;
$h5-font-size: 1.15rem !default;
|