aboutsummaryrefslogtreecommitdiff
path: root/kamon-status-page/src/main/vue/src/App.vue
blob: fd612828236aecc2a6cdb53b53966ace8cfda9ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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>