2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
2024-02-13 16:59:27 +01:00
|
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 07:31:52 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2023-01-01 03:57:37 +01:00
|
|
|
<template>
|
|
|
|
<div :class="$style.root">
|
2023-01-27 03:35:04 +01:00
|
|
|
<XNotification :notification="notification" class="notification _acrylic" :full="false"/>
|
2023-01-01 03:57:37 +01:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2023-09-04 06:33:38 +02:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-01-01 03:57:37 +01:00
|
|
|
import XNotification from '@/components/MkNotification.vue';
|
|
|
|
|
|
|
|
defineProps<{
|
2023-09-04 06:33:38 +02:00
|
|
|
notification: Misskey.entities.Notification;
|
2023-01-01 03:57:37 +01:00
|
|
|
}>();
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
|
|
|
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
|
2023-10-31 19:44:34 +01:00
|
|
|
border-radius: var(--radius-sm);
|
2023-01-01 03:57:37 +01:00
|
|
|
overflow: clip;
|
|
|
|
contain: content;
|
|
|
|
}
|
|
|
|
</style>
|