Removing unused selectors.

This commit is contained in:
Bradley Shellnut 2022-07-11 17:07:03 -07:00
parent a910cb518b
commit c839694cdc
2 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@
import type { GameType } from '$lib/types'; import type { GameType } from '$lib/types';
export let game: GameType; export let game: GameType;
export let detailed: boolean; export let detailed: boolean = false;
</script> </script>
<article class="game-container" transition:fade> <article class="game-container" transition:fade>

View file

@ -132,7 +132,7 @@
<h1>Games</h1> <h1>Games</h1>
<div class="games"> <div class="games">
{#each games as game} {#each games as game}
<Game detailed={false} {game} /> <Game {game} />
{/each} {/each}
</div> </div>
@ -234,11 +234,11 @@
padding: 0 0 calc(100% * 495 / 2048) 0; padding: 0 0 calc(100% * 495 / 2048) 0;
} }
.welcome img { /* .welcome img {
position: absolute; position: absolute;
width: 100%; width: 100%;
height: 100%; height: 100%;
top: 0; top: 0;
display: block; display: block;
} } */
</style> </style>