aboutsummaryrefslogtreecommitdiff
path: root/src/components/actions/topic.svelte
blob: e2f59c9ef91ecc0656ab8f1e330b98172376628e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<script>
	export let actions;

	import { _ } from 'svelte-i18n';
</script>

<li>
  <a href="/reply/{actions.id}" title={$_('header.action.reply.title')}>
    {@html $_('header.action.reply.display')}
  </a>
</li>

<style>
	li {
		display: inline;
		margin: 5px;
	}

	a {
		text-decoration: none;
		line-height: 3em;
		display: inline-block;
	}
</style>