blob: 2d527c1a6544388d5c6764de15d7eaa6242be60c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<!--
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: var(--MI-radius-sm);
overflow: clip;
contain: content;
}
</style>
|