diff options
| author | Leonardo Bishop <me@leonardobishop.com> | 2024-03-12 17:48:23 +0000 |
|---|---|---|
| committer | Leonardo Bishop <me@leonardobishop.com> | 2024-03-12 17:48:23 +0000 |
| commit | addf95bc7e1e694cd9ba7797c8b0847bfecaf54c (patch) | |
| tree | 422e96cb24eb3b3ec9d4c96de555b8fa14239c59 /components/editor/EditorOptionsPanel.vue | |
| parent | 8664ad155c89d47affd94f8b0385ebf39841f1f8 (diff) | |
Add nuxt prefixes back to component file names
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 |
