diff --git a/src/app/features/plan/plan-game/plan-game.component.ts b/src/app/features/plan/plan-game/plan-game.component.ts index ba37d20..08a797c 100644 --- a/src/app/features/plan/plan-game/plan-game.component.ts +++ b/src/app/features/plan/plan-game/plan-game.component.ts @@ -47,7 +47,6 @@ import { GamePlan } from '../../../core/models/plan.model'; .game-image { width: 100%; - height: 160px; object-fit: cover; } @@ -84,7 +83,7 @@ export class PlanGameComponent { getGameBoxArt(): string { // You'll need to implement this to return the correct box art URL - return `/assets/images/games/${this.game.game_name.toLowerCase().replace(' ', '-')}.png`; + return `/assets/images/games/_${this.game.game_name.replace(' ', '')}.png`; } onSelect() { diff --git a/src/assets/images/games/_AlphaSapphire.png b/src/assets/images/games/_AlphaSapphire.png new file mode 100644 index 0000000..ad7b1f4 Binary files /dev/null and b/src/assets/images/games/_AlphaSapphire.png differ diff --git a/src/assets/images/games/_Black.png b/src/assets/images/games/_Black.png new file mode 100644 index 0000000..2b318c7 Binary files /dev/null and b/src/assets/images/games/_Black.png differ diff --git a/src/assets/images/games/_Black2.png b/src/assets/images/games/_Black2.png new file mode 100644 index 0000000..a2a586d Binary files /dev/null and b/src/assets/images/games/_Black2.png differ diff --git a/src/assets/images/games/_Blue.png b/src/assets/images/games/_Blue.png new file mode 100644 index 0000000..194194a Binary files /dev/null and b/src/assets/images/games/_Blue.png differ diff --git a/src/assets/images/games/_BrilliantDiamond.png b/src/assets/images/games/_BrilliantDiamond.png new file mode 100644 index 0000000..46d66b5 Binary files /dev/null and b/src/assets/images/games/_BrilliantDiamond.png differ diff --git a/src/assets/images/games/_Crystal.png b/src/assets/images/games/_Crystal.png new file mode 100644 index 0000000..a428585 Binary files /dev/null and b/src/assets/images/games/_Crystal.png differ diff --git a/src/assets/images/games/_Diamond.png b/src/assets/images/games/_Diamond.png new file mode 100644 index 0000000..8b9169c Binary files /dev/null and b/src/assets/images/games/_Diamond.png differ diff --git a/src/assets/images/games/_Emerald.png b/src/assets/images/games/_Emerald.png new file mode 100644 index 0000000..2e2ebc4 Binary files /dev/null and b/src/assets/images/games/_Emerald.png differ diff --git a/src/assets/images/games/_FireRed.png b/src/assets/images/games/_FireRed.png new file mode 100644 index 0000000..eced506 Binary files /dev/null and b/src/assets/images/games/_FireRed.png differ diff --git a/src/assets/images/games/_Gold.png b/src/assets/images/games/_Gold.png new file mode 100644 index 0000000..cdf3478 Binary files /dev/null and b/src/assets/images/games/_Gold.png differ diff --git a/src/assets/images/games/_HeartGold.png b/src/assets/images/games/_HeartGold.png new file mode 100644 index 0000000..ed3202d Binary files /dev/null and b/src/assets/images/games/_HeartGold.png differ diff --git a/src/assets/images/games/_LeafGreen.png b/src/assets/images/games/_LeafGreen.png new file mode 100644 index 0000000..ea30a8b Binary files /dev/null and b/src/assets/images/games/_LeafGreen.png differ diff --git a/src/assets/images/games/_LegendsArceus.png b/src/assets/images/games/_LegendsArceus.png new file mode 100644 index 0000000..96017be Binary files /dev/null and b/src/assets/images/games/_LegendsArceus.png differ diff --git a/src/assets/images/games/_LetsGoEevee.png b/src/assets/images/games/_LetsGoEevee.png new file mode 100644 index 0000000..5bb0a17 Binary files /dev/null and b/src/assets/images/games/_LetsGoEevee.png differ diff --git a/src/assets/images/games/_LetsGoPikachu.png b/src/assets/images/games/_LetsGoPikachu.png new file mode 100644 index 0000000..9a91c58 Binary files /dev/null and b/src/assets/images/games/_LetsGoPikachu.png differ diff --git a/src/assets/images/games/_Moon.png b/src/assets/images/games/_Moon.png new file mode 100644 index 0000000..6ffa696 Binary files /dev/null and b/src/assets/images/games/_Moon.png differ diff --git a/src/assets/images/games/_OmegaRuby.png b/src/assets/images/games/_OmegaRuby.png new file mode 100644 index 0000000..f99d8e1 Binary files /dev/null and b/src/assets/images/games/_OmegaRuby.png differ diff --git a/src/assets/images/games/_Pearl.png b/src/assets/images/games/_Pearl.png new file mode 100644 index 0000000..1362146 Binary files /dev/null and b/src/assets/images/games/_Pearl.png differ diff --git a/src/assets/images/games/_Platinum.png b/src/assets/images/games/_Platinum.png new file mode 100644 index 0000000..5f3a0e7 Binary files /dev/null and b/src/assets/images/games/_Platinum.png differ diff --git a/src/assets/images/games/_Red.png b/src/assets/images/games/_Red.png new file mode 100644 index 0000000..a62ad23 Binary files /dev/null and b/src/assets/images/games/_Red.png differ diff --git a/src/assets/images/games/_Ruby.png b/src/assets/images/games/_Ruby.png new file mode 100644 index 0000000..42350df Binary files /dev/null and b/src/assets/images/games/_Ruby.png differ diff --git a/src/assets/images/games/_Sapphire.png b/src/assets/images/games/_Sapphire.png new file mode 100644 index 0000000..63d1531 Binary files /dev/null and b/src/assets/images/games/_Sapphire.png differ diff --git a/src/assets/images/games/_Scarlet.png b/src/assets/images/games/_Scarlet.png new file mode 100644 index 0000000..8557e14 Binary files /dev/null and b/src/assets/images/games/_Scarlet.png differ diff --git a/src/assets/images/games/_Shield.png b/src/assets/images/games/_Shield.png new file mode 100644 index 0000000..0f90e92 Binary files /dev/null and b/src/assets/images/games/_Shield.png differ diff --git a/src/assets/images/games/_ShiningPearl.png b/src/assets/images/games/_ShiningPearl.png new file mode 100644 index 0000000..6fff855 Binary files /dev/null and b/src/assets/images/games/_ShiningPearl.png differ diff --git a/src/assets/images/games/_Silver.png b/src/assets/images/games/_Silver.png new file mode 100644 index 0000000..860dae3 Binary files /dev/null and b/src/assets/images/games/_Silver.png differ diff --git a/src/assets/images/games/_SoulSilver.png b/src/assets/images/games/_SoulSilver.png new file mode 100644 index 0000000..7f73420 Binary files /dev/null and b/src/assets/images/games/_SoulSilver.png differ diff --git a/src/assets/images/games/_Sun.png b/src/assets/images/games/_Sun.png new file mode 100644 index 0000000..94632ca Binary files /dev/null and b/src/assets/images/games/_Sun.png differ diff --git a/src/assets/images/games/_Sword.png b/src/assets/images/games/_Sword.png new file mode 100644 index 0000000..a2f46d5 Binary files /dev/null and b/src/assets/images/games/_Sword.png differ diff --git a/src/assets/images/games/_UltraSun.png b/src/assets/images/games/_UltraSun.png new file mode 100644 index 0000000..0bd589e Binary files /dev/null and b/src/assets/images/games/_UltraSun.png differ diff --git a/src/assets/images/games/_Violet.png b/src/assets/images/games/_Violet.png new file mode 100644 index 0000000..f9f9547 Binary files /dev/null and b/src/assets/images/games/_Violet.png differ diff --git a/src/assets/images/games/_White.png b/src/assets/images/games/_White.png new file mode 100644 index 0000000..cea076d Binary files /dev/null and b/src/assets/images/games/_White.png differ diff --git a/src/assets/images/games/_White2.png b/src/assets/images/games/_White2.png new file mode 100644 index 0000000..9fa751b Binary files /dev/null and b/src/assets/images/games/_White2.png differ diff --git a/src/assets/images/games/_X.png b/src/assets/images/games/_X.png new file mode 100644 index 0000000..8f8fd9b Binary files /dev/null and b/src/assets/images/games/_X.png differ diff --git a/src/assets/images/games/_Y.png b/src/assets/images/games/_Y.png new file mode 100644 index 0000000..66d6708 Binary files /dev/null and b/src/assets/images/games/_Y.png differ diff --git a/src/assets/images/games/_Yellow.png b/src/assets/images/games/_Yellow.png new file mode 100644 index 0000000..80690dc Binary files /dev/null and b/src/assets/images/games/_Yellow.png differ