mirror of
https://github.com/BradNut/boredgame
synced 2025-09-08 17:40:22 +00:00
Removing unused selectors.
This commit is contained in:
parent
a910cb518b
commit
c839694cdc
2 changed files with 4 additions and 4 deletions
|
|
@ -3,7 +3,7 @@
|
|||
import type { GameType } from '$lib/types';
|
||||
|
||||
export let game: GameType;
|
||||
export let detailed: boolean;
|
||||
export let detailed: boolean = false;
|
||||
</script>
|
||||
|
||||
<article class="game-container" transition:fade>
|
||||
|
|
|
|||
|
|
@ -132,7 +132,7 @@
|
|||
<h1>Games</h1>
|
||||
<div class="games">
|
||||
{#each games as game}
|
||||
<Game detailed={false} {game} />
|
||||
<Game {game} />
|
||||
{/each}
|
||||
</div>
|
||||
|
||||
|
|
@ -234,11 +234,11 @@
|
|||
padding: 0 0 calc(100% * 495 / 2048) 0;
|
||||
}
|
||||
|
||||
.welcome img {
|
||||
/* .welcome img {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
display: block;
|
||||
}
|
||||
} */
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in a new issue