2023-07-27 08:31:52 +03:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2023-01-01 04:57:37 +02:00
|
|
|
<template>
|
|
|
|
<div :class="$style.root">
|
2023-01-27 04:35:04 +02:00
|
|
|
<XNotification :notification="notification" class="notification _acrylic" :full="false"/>
|
2023-01-01 04:57:37 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2023-09-04 07:33:38 +03:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-01-01 04:57:37 +02:00
|
|
|
import XNotification from '@/components/MkNotification.vue';
|
|
|
|
|
|
|
|
defineProps<{
|
2023-09-04 07:33:38 +03:00
|
|
|
notification: Misskey.entities.Notification;
|
2023-01-01 04:57:37 +02:00
|
|
|
}>();
|
|
|
|
</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>
|