Ignore build
This commit is contained in:
parent
c2dafe4ee1
commit
c4cf867689
5 changed files with 9 additions and 13 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -10,6 +10,7 @@ lerna-debug.log*
|
||||||
node_modules
|
node_modules
|
||||||
dist
|
dist
|
||||||
dist-ssr
|
dist-ssr
|
||||||
|
build
|
||||||
*.local
|
*.local
|
||||||
.svelte-kit
|
.svelte-kit
|
||||||
|
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
<script>
|
|
||||||
import { Fa } from 'svelte-fa';
|
|
||||||
import { AppRailAnchor } from '@skeletonlabs/skeleton';
|
|
||||||
import { showSearch } from '$lib/stores';
|
|
||||||
import { faSearch } from '@fortawesome/free-solid-svg-icons';
|
|
||||||
</script>
|
|
||||||
|
|
||||||
<AppRailAnchor on:click={() => $showSearch = !$showSearch}>
|
|
||||||
<div class="flex flex-col gap-2 place-content-center">
|
|
||||||
<Fa size={'2x'} icon={faSearch} />
|
|
||||||
<p>Search</p>
|
|
||||||
</div>
|
|
||||||
</AppRailAnchor>
|
|
8
src/lib/useLoading.svelte.js
Normal file
8
src/lib/useLoading.svelte.js
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
function useLoading() {
|
||||||
|
let loading = $state(false);
|
||||||
|
return {
|
||||||
|
get loading() {return loading},
|
||||||
|
setLoading: (val) => {loading = val},
|
||||||
|
toggleLoading: () => {loading = !loading}
|
||||||
|
}
|
||||||
|
}
|
0
src/lib/usePostSearchResults.svelte.js
Normal file
0
src/lib/usePostSearchResults.svelte.js
Normal file
0
src/lib/useSettings.svelte.js
Normal file
0
src/lib/useSettings.svelte.js
Normal file
Loading…
Reference in a new issue