Files
documenter-mono/resources/js/Layouts/Sections.vue
2025-10-31 16:48:05 +09:00

39 lines
1.5 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<script setup>
import SentryNotification from "../Components/Notifications/SentryNotification.vue";
</script>
<template>
<main class="relative isolate h-screen flex flex-col w-full bg-white dark:text-white lg:bg-zinc-100 dark:bg-zinc-900 dark:lg:bg-zinc-950 p-2 ">
<div class="grid lg:grid-cols-[320px_1fr_380px] gap-2 h-[calc(100vh-42px)]">
<!-- Left Sidebar -->
<div v-if="$slots.leftbar" class="min-h-0">
<slot name="leftbar" />
</div>
<!-- Main Content -->
<div class="h-full flex flex-col min-h-0">
<slot />
<!-- <div class="flex-1 p-4 lg:rounded-lg lg:bg-white lg:p-8 lg:shadow-xs lg:ring-1 lg:ring-zinc-950/5 dark:lg:bg-zinc-900 dark:lg:ring-white/10 overflow-y-auto">-->
<!-- -->
<!-- </div>-->
</div>
<!-- Right Sidebar -->
<div v-if="$slots.rightbar" class="min-h-0">
<slot name="rightbar" />
</div>
</div>
<div class="flex w-full justify-center mt-2.5 text-sm/4">
<a href="https://aokb28.su" target="_blank">
ГОСУДАРСТВЕННОЕ АВТОНОМНОЕ УЧРЕЖДЕНИЕ ЗДРАВООХРАНЕНИЯ АМУРСКОЙ ОБЛАСТИ "АМУРСКАЯ ОБЛАСТНАЯ КЛИНИЧЕСКАЯ БОЛЬНИЦА", 2025 год
</a>
</div>
<SentryNotification />
</main>
</template>
<style scoped>
</style>