Fixed location of pokemon card location

develop
Jason Zhu 2023-03-19 12:48:37 +11:00
parent 610b501d9a
commit 65f0b56a20
4 changed files with 4 additions and 3 deletions

View File

@ -2,7 +2,7 @@ import React from 'react';
import './App.css'; import './App.css';
import { Header } from './Header'; import { Header } from './Header';
import { Filters } from './Filters'; import { Filters } from './Filters';
import { Pokemon } from './Pokemon'; import { Pokemon } from './features/Pokedex/Pokemon';
function App() { function App() {
return ( return (

View File

@ -28,7 +28,7 @@ html {
@font-face { @font-face {
font-family: 'Press Start 2P'; font-family: 'Press Start 2P';
src: url('assets/PressStart2P-Regular.ttf') format('truetype'); src: url('../../../assets/PressStart2P-Regular.ttf') format('truetype');
} }
.thumbnail__container { .thumbnail__container {

View File

@ -1,6 +1,6 @@
import React from 'react'; import React from 'react';
import './Pokemon.css'; import './Pokemon.css';
import charizard from './assets/charizard.svg'; import charizard from '../../../assets/charizard.svg';
export function Pokemon() { export function Pokemon() {
return ( return (

View File

@ -0,0 +1 @@
export * from './Pokemon';