We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4004074 commit d272b32Copy full SHA for d272b32
src/views/BrowserView.vue
@@ -61,6 +61,18 @@ watch(
61
</script>
62
63
<template>
64
+ <q-banner dense inline-actions class="banner">
65
+ You are using IHR's custom IYP Browser!
66
+ <template v-slot:action>
67
+ <q-btn
68
+ outline
69
+ dense
70
+ label="Go back to Neo4J Browser"
71
+ size="sm"
72
+ href="https://iyp.iijlab.net/iyp/browser/?dbms=iyp-bolt.iijlab.net:443"
73
+ />
74
+ </template>
75
+ </q-banner>
76
<div class="container">
77
<div class="browser-input-container">
78
<InputPanel @run="runQuery" />
@@ -105,4 +117,8 @@ watch(
105
117
.output-panel {
106
118
height: v-bind('outputPanelHeight');
107
119
}
120
+.banner {
121
+ background-color: #263238;
122
+ color: #ffffff;
123
+}
108
124
</style>
0 commit comments