aboutsummaryrefslogtreecommitdiff
path: root/kamon-status/src/components/Card.vue
blob: d77596da7ce64057c675c53d42ad7acc9f1eff82 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
  <div class="outer">
    <slot/>
  </div>
</template>


<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped lang="scss">
.outer {
  background-color: white;
  box-shadow: 0 2px 9px 1px rgba(0, 0, 0, 0.1);
}

hr {
  margin: 0px;
  border-color: #f3f3f3;
}
</style>