Moved header and toast to the components directory.

This commit is contained in:
Bradley Shellnut 2022-07-08 23:50:55 -07:00
parent eff1d2e817
commit e20727d115
8 changed files with 6 additions and 6 deletions

View file

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 26 KiB

View file

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -1,7 +1,7 @@
<script lang="ts">
import { fly, fade } from 'svelte/transition';
import { flip } from 'svelte/animate';
import Portal from '../Portal.svelte';
import Portal from '../../Portal.svelte';
import ToastMessage from './ToastMessage.svelte';
import { toast } from './toast';
</script>

View file

@ -1,5 +1,5 @@
<script lang="ts">
import Header from '$lib/header/Header.svelte';
import Header from '$lib/components/header/Header.svelte';
import Transition from '$lib/components/transition/index.svelte';
// import 'carbon-components-svelte/css/all.css';
import '$root/styles/styles.scss';

View file

@ -64,11 +64,11 @@
/> -->
</div>
<div>
<label htmlfor="maxPlayers">
<label htmlfor="minPlayers">
<input
id="maxPlayers"
name="maxPlayers"
bind:value={maxPlayers}
id="minPlayers"
name="minPlayers"
bind:value={minPlayers}
type="number"
min={0}
max={50}