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">
|
<script lang="ts">
|
||||||
import { fly, fade } from 'svelte/transition';
|
import { fly, fade } from 'svelte/transition';
|
||||||
import { flip } from 'svelte/animate';
|
import { flip } from 'svelte/animate';
|
||||||
import Portal from '../Portal.svelte';
|
import Portal from '../../Portal.svelte';
|
||||||
import ToastMessage from './ToastMessage.svelte';
|
import ToastMessage from './ToastMessage.svelte';
|
||||||
import { toast } from './toast';
|
import { toast } from './toast';
|
||||||
</script>
|
</script>
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
<script lang="ts">
|
<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 Transition from '$lib/components/transition/index.svelte';
|
||||||
// import 'carbon-components-svelte/css/all.css';
|
// import 'carbon-components-svelte/css/all.css';
|
||||||
import '$root/styles/styles.scss';
|
import '$root/styles/styles.scss';
|
||||||
|
|
|
||||||
|
|
@ -64,11 +64,11 @@
|
||||||
/> -->
|
/> -->
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<label htmlfor="maxPlayers">
|
<label htmlfor="minPlayers">
|
||||||
<input
|
<input
|
||||||
id="maxPlayers"
|
id="minPlayers"
|
||||||
name="maxPlayers"
|
name="minPlayers"
|
||||||
bind:value={maxPlayers}
|
bind:value={minPlayers}
|
||||||
type="number"
|
type="number"
|
||||||
min={0}
|
min={0}
|
||||||
max={50}
|
max={50}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue