aboutsummaryrefslogtreecommitdiffstats
path: root/components/Panel.vue
blob: 007d2b6ce7d4e4968d081f6a36e962c0abdeece4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<template>
  <div class="card">
    <slot />
  </div>
</template>

<style>
.card {
  background-color: white;
  padding: 1rem; 
  border-radius: 0.5rem; 
  /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06); */
  border: 0.1rem solid var(--color-border);
}
</style>