This commit is contained in:
syuilo 2023-01-01 11:57:37 +09:00
parent 50043047aa
commit 86e88647fd
3 changed files with 90 additions and 74 deletions

View file

@ -0,0 +1,24 @@
<template>
<div :class="$style.root">
<XNotification :notification="notification" class="notification _acrylic"/>
</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>