blob: ef8ea0b9edba8a35c43461c593a6572a16fb173b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<script>
import SvelteMarkdown from 'svelte-markdown';
export let at;
export let body;
</script>
<div class="message relative">
<span class="timestamp chip variant-soft absolute top-0 right-0">{at}</span>
<section class="p-1">
<SvelteMarkdown source={body} />
</section>
</div>
<style>
.message .timestamp {
display: none;
}
.message:hover .timestamp {
display: flex;
}
</style>
|