🎨
This commit is contained in:
parent
50043047aa
commit
86e88647fd
3 changed files with 90 additions and 74 deletions
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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue