Sharkey/packages/frontend/src/ui/_common_/notification.vue

30 lines
633 B
Vue
Raw Normal View History

<!--
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">
<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';
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>