aboutsummaryrefslogtreecommitdiffstats
path: root/components/editor/OptionsPanel.vue
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-03-10 01:31:42 +0000
committerLeonardo Bishop <me@leonardobishop.com>2024-03-10 01:31:42 +0000
commit71e4ad2c71efea471923ea47f01bfda841387f81 (patch)
treef08293fdc56b4eb2e3d0e520b79b4d8aad78924c /components/editor/OptionsPanel.vue
parent4495c02c41b95ce6df0c34dbf6ac62f7addae7a3 (diff)
Use nuxt auto import magic
Diffstat (limited to 'components/editor/OptionsPanel.vue')
-rw-r--r--components/editor/OptionsPanel.vue18
1 files changed, 18 insertions, 0 deletions
diff --git a/components/editor/OptionsPanel.vue b/components/editor/OptionsPanel.vue
new file mode 100644
index 0000000..1415d84
--- /dev/null
+++ b/components/editor/OptionsPanel.vue
@@ -0,0 +1,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);
+ padding: 1rem;
+ height: 100%;
+}
+</style> \ No newline at end of file