diff options
Diffstat (limited to 'components/editor/EditorOptionsPanel.vue')
| -rw-r--r-- | components/editor/EditorOptionsPanel.vue | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/components/editor/EditorOptionsPanel.vue b/components/editor/EditorOptionsPanel.vue new file mode 100644 index 0000000..7cf8982 --- /dev/null +++ b/components/editor/EditorOptionsPanel.vue @@ -0,0 +1,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>
\ No newline at end of file |
