mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 05:33:09 +02:00
25 lines
508 B
Vue
25 lines
508 B
Vue
|
<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>
|