Reviewed-on: #268 Reviewed-by: Mikolaj Widla <widlam@noreply.example.com> Co-authored-by: Adam Bem <adam.bem@zoho.eu> Co-committed-by: Adam Bem <adam.bem@zoho.eu>
19 lines
526 B
Vue
19 lines
526 B
Vue
<script setup lang="ts">
|
|
import { RouterView } from 'vue-router';
|
|
import SidebarComponent from '@components/sidebar/SidebarComponent.vue';
|
|
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div id="layout" class="font-sans flex h-screen bg-gradient-to-br from-sky-200 to-indigo-200 dark:from-sky-950 dark:to-indigo-950">
|
|
<SidebarComponent />
|
|
<div class="relative p-4 w-full m-4 ml-0 bg-blue-50 dark:bg-gray-700 rounded-2xl overflow-hidden shadow-lg">
|
|
<RouterView></RouterView>
|
|
</div>
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<style scoped></style>
|