aboutsummaryrefslogtreecommitdiff
path: root/kamon-status/src/components/Card.vue
blob: 745a1cafeaab9d07152447660df220fa7d613c7c (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 py-1">
    <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: 1px;
  border-color: #f3f3f3;
}
</style>