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