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

<script lang="ts">
import { Component, Vue } from 'vue-property-decorator'

@Component
export default class Card extends Vue {}
</script>


<style lang="scss">
.card-wrapper {
  background-color: white;
  box-shadow: 0 2px 9px 1px rgba(0, 0, 0, 0.1);
}
</style>