]> git.r.bdr.sh - rbdr/forum/blame - src/lib/components/actions/topic.svelte
Don't remember what this WIP was about
[rbdr/forum] / src / lib / components / actions / topic.svelte
CommitLineData
a7cf03c1 1<script lang="ts">
be1ce532 2 import type { TopicAction } from '$lib/stores/actions';
a7cf03c1 3 export let actions: TopicAction;
55fb920b
RBR
4
5 import { _ } from 'svelte-i18n';
6</script>
7
8<li>
cac85db0
RBR
9 <a href="/reply/{actions.id}" title={$_('header.action.reply.title')}>
10 {@html $_('header.action.reply.display')}
11 </a>
55fb920b
RBR
12</li>
13
14<style>
15 li {
16 display: inline;
17 margin: 5px;
18 }
19
20 a {
21 text-decoration: none;
22 line-height: 3em;
23 display: inline-block;
24 }
25</style>