aboutsummaryrefslogtreecommitdiffstats
path: root/components/editor/EditorOptionsPanel.vue
blob: 05d1f3402fe83d1cf0e0142d82eb2984086c879c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<script setup lang="ts"></script>

<template>
  <div id="options-panel">
    <slot />
  </div>
</template>

<style scoped>
#options-panel {
  width: 100%;
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  height: 100%;
}
</style>