aboutsummaryrefslogtreecommitdiffstats
path: root/components/editor/SidebarMainConfiguration.vue
diff options
context:
space:
mode:
Diffstat (limited to 'components/editor/SidebarMainConfiguration.vue')
-rw-r--r--components/editor/SidebarMainConfiguration.vue57
1 files changed, 0 insertions, 57 deletions
diff --git a/components/editor/SidebarMainConfiguration.vue b/components/editor/SidebarMainConfiguration.vue
deleted file mode 100644
index c4727c6..0000000
--- a/components/editor/SidebarMainConfiguration.vue
+++ /dev/null
@@ -1,57 +0,0 @@
-<script setup lang="ts">
-import { computed } from 'vue';
-
-const route = useRoute();
-
-const setSelected = () => {
- navigateTo({ path: '/config' })
-};
-
-const selected = computed(() => {
- return route.path.startsWith('/config');
-});
-</script>
-
-<template>
- <div id="container" :class="{ selected: selected }">
- <span id="title" @click="setSelected">
- <font-awesome-icon class="icon" :icon="['fas', 'wrench']" />
- <span id="name">
- Configuration
- </span>
- </span>
- </div>
-</template>
-
-<style scoped>
-#container {
- cursor: pointer;
- padding: 0.5rem 1rem;
- transition: background-color 0.3s;
- border-bottom: 1px solid var(--color-border-soft);
- max-height: 45px;
- overflow-y: hidden;
-
- #title {
- display: flex;
- align-items: center;
- margin: 0;
- gap: 1rem;
- font-size: 1.1rem;
-
- #name {
- display: flex;
- flex-direction: column;
- align-items: left;
- }
- }
-}
-
-.selected {
- background-color: var(--color-primary-mute);
-}
-
-#container:hover {
- background-color: var(--color-hover);
-}
-</style> \ No newline at end of file