frontend/components/sidebars/right-sidebar.vue

18 lines
514 B
Vue
Raw Normal View History

2024-12-02 22:55:36 +01:00
<template>
<Sidebar
side="right"
collapsible="none"
class="hidden md:flex"
style="--sidebar-width: 24rem; --sidebar-width-mobile: 18rem"
>
<SidebarContent class="overflow-y-auto *:p-2 *:gap-2">
2024-12-02 22:55:36 +01:00
<NotificationsTimeline />
</SidebarContent>
</Sidebar>
</template>
<script setup lang="ts">
import NotificationsTimeline from "~/components/timelines/notifications.vue";
import { Sidebar, SidebarContent } from "~/components/ui/sidebar";
</script>