misskey/packages/frontend/src/ui/_common_/notification.vue
2024-02-13 15:59:27 +00:00

30 lines
622 B
Vue

<!--
SPDX-FileCopyrightText: syuilo and misskey-project
SPDX-License-Identifier: AGPL-3.0-only
-->
<template>
<div :class="$style.root">
<XNotification :notification="notification" class="notification _acrylic" :full="false"/>
</div>
</template>
<script lang="ts" setup>
import { } from 'vue';
import * as Misskey from 'misskey-js';
import XNotification from '@/components/MkNotification.vue';
defineProps<{
notification: Misskey.entities.Notification;
}>();
</script>
<style lang="scss" module>
.root {
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
border-radius: 8px;
overflow: clip;
contain: content;
}
</style>