summaryrefslogtreecommitdiff
path: root/src/components/Footer.vue
blob: 0f3dbfb6e0b4cd18e4d9023173fe471f6b746348 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<template>
	<footer class="footer">
		&copy; 2004&ndash;{{ (new Date()).getFullYear() }} The Mana World
	</footer>
</template>

<style scoped>
.footer {
	text-align: right;
	font-size: 8pt;
	padding: 5px;
}
</style>