Files
fnx_web/svelte/src/layout/FileTitle.svelte

13 lines
142 B
Svelte
Raw Normal View History

<script>
export let title = ""
</script>
<h1>{title}</h1>
<style>
h1 {
text-shadow: 1px 1px 2px #000000;
line-break: anywhere;
}
</style>