ledger gemory draft

This commit is contained in:
Sirttas
2026-05-17 12:42:25 +02:00
parent e81fdc24bb
commit f9ae0d142a
35 changed files with 2017 additions and 2763 deletions
+4 -4
View File
@@ -1,14 +1,12 @@
<script setup lang="ts">
import { useAuthStore } from '@/auth';
import { computed } from 'vue';
import { RouterView, useRoute } from 'vue-router';
import { Sidebar } from './sidebar';
const route = useRoute();
const authStore = useAuthStore();
const hideSidebar = computed(() => {
return !authStore.isLoggedIn || route.name === 'callback' || route.name === 'about';
return route.name === 'callback' || route.name === 'about';
});
</script>
@@ -24,7 +22,9 @@ const hideSidebar = computed(() => {
</template>
</template>
<style scoped lang="postcss">
<style scoped>
@reference "tailwindcss";
div.main-container {
@apply px-4 sm:ml-64;
}