mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
Moved header and toast to the components directory.
This commit is contained in:
parent
eff1d2e817
commit
e20727d115
8 changed files with 6 additions and 6 deletions
|
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
|
@ -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>
|
||||
|
|
@ -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';
|
||||
|
|
|
|||
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in a new issue