mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-27 08:24:26 +02:00
🎨
This commit is contained in:
24
packages/frontend/src/ui/_common_/notification.vue
Normal file
24
packages/frontend/src/ui/_common_/notification.vue
Normal 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>
|
||||
Reference in New Issue
Block a user