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