30 lines
No EOL
503 B
Svelte
30 lines
No EOL
503 B
Svelte
<script lang="ts">
|
|
export let dev: boolean = false;
|
|
|
|
import Fa from 'svelte-fa/src/fa.svelte';
|
|
import { faWindowRestore } from '@fortawesome/free-regular-svg-icons';
|
|
</script>
|
|
|
|
{#if dev}
|
|
<div>
|
|
<a rel="external" href="/embed-previewer">
|
|
<Fa icon={faWindowRestore} />
|
|
</a>
|
|
</div>
|
|
{/if}
|
|
|
|
|
|
<style lang="scss">
|
|
div {
|
|
position: fixed;
|
|
bottom: 5px;
|
|
left: 10px;
|
|
font-size: 18px;
|
|
a {
|
|
color: #ccc;
|
|
&:hover {
|
|
color: #666;
|
|
}
|
|
}
|
|
}
|
|
</style> |