aboutsummaryrefslogtreecommitdiff
path: root/kamon-status-page/src/main/vue/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'kamon-status-page/src/main/vue/src/App.vue')
-rw-r--r--kamon-status-page/src/main/vue/src/App.vue47
1 files changed, 47 insertions, 0 deletions
diff --git a/kamon-status-page/src/main/vue/src/App.vue b/kamon-status-page/src/main/vue/src/App.vue
new file mode 100644
index 00000000..fd612828
--- /dev/null
+++ b/kamon-status-page/src/main/vue/src/App.vue
@@ -0,0 +1,47 @@
+<template>
+ <div id="app">
+ <div class="header w-100 mb-1 sticky-top">
+ <div class="container h-100">
+ <div class="row h-100 justify-content-between">
+ <div class="col-auto h-100">
+ <img class="logo h-100 img-fluid" src="./assets/logo.svg" alt="">
+ </div>
+ </div>
+ </div>
+ </div>
+
+ <router-view/>
+ </div>
+
+</template>
+
+<style lang="scss">
+
+$header-height: 85px;
+
+.header {
+ height: $header-height;
+ background-color: white;
+ box-shadow: 0 5px 9px 1px rgba(0,0,0,0.1);
+
+ .navigation {
+ line-height: $header-height;
+
+ .navigation-link, a {
+ display: inline-block;
+ padding: 0 0.5rem;
+ text-transform: uppercase;
+ text-decoration: none;
+ color: #b3b3b3;
+
+ &:hover {
+ color: #888888;
+ }
+ }
+ }
+
+ .logo {
+ padding: 1rem 0rem;
+ }
+}
+</style>