aboutsummaryrefslogtreecommitdiffstats
path: root/components/editor/EditorOptionsPanel.vue
blob: 7cf89821d77be01961a0c55b75f1dbec5ea43f18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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>