diff options
Diffstat (limited to 'frontend/src/pages')
| -rw-r--r-- | frontend/src/pages/About.tsx | 4 | ||||
| -rw-r--r-- | frontend/src/pages/Games.tsx | 4 | ||||
| -rw-r--r-- | frontend/src/pages/Profile.tsx | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/frontend/src/pages/About.tsx b/frontend/src/pages/About.tsx index ded3461..fe2e25a 100644 --- a/frontend/src/pages/About.tsx +++ b/frontend/src/pages/About.tsx | |||
| @@ -27,9 +27,9 @@ const About: React.FC = () => { | |||
| 27 | 27 | ||
| 28 | 28 | ||
| 29 | return ( | 29 | return ( |
| 30 | <div id="about"> | 30 | <main> |
| 31 | <ReactMarkdown>{aboutText}</ReactMarkdown> | 31 | <ReactMarkdown>{aboutText}</ReactMarkdown> |
| 32 | </div> | 32 | </main> |
| 33 | ); | 33 | ); |
| 34 | }; | 34 | }; |
| 35 | 35 | ||
diff --git a/frontend/src/pages/Games.tsx b/frontend/src/pages/Games.tsx index 15105c9..e7e031e 100644 --- a/frontend/src/pages/Games.tsx +++ b/frontend/src/pages/Games.tsx | |||
| @@ -25,7 +25,7 @@ const Games: React.FC<GamesProps> = ({ games }) => { | |||
| 25 | }, []); | 25 | }, []); |
| 26 | 26 | ||
| 27 | return ( | 27 | return ( |
| 28 | <div className='games-page'> | 28 | <main> |
| 29 | <section> | 29 | <section> |
| 30 | <div className='games-page-content'> | 30 | <div className='games-page-content'> |
| 31 | <div className='games-page-item-content'> | 31 | <div className='games-page-item-content'> |
| @@ -35,7 +35,7 @@ const Games: React.FC<GamesProps> = ({ games }) => { | |||
| 35 | </div> | 35 | </div> |
| 36 | </div> | 36 | </div> |
| 37 | </section> | 37 | </section> |
| 38 | </div> | 38 | </main> |
| 39 | ); | 39 | ); |
| 40 | }; | 40 | }; |
| 41 | 41 | ||
diff --git a/frontend/src/pages/Profile.tsx b/frontend/src/pages/Profile.tsx index f7134a7..00d8f4e 100644 --- a/frontend/src/pages/Profile.tsx +++ b/frontend/src/pages/Profile.tsx | |||
| @@ -108,7 +108,7 @@ const Profile: React.FC<ProfileProps> = ({ profile, token, gameData, onDeleteRec | |||
| 108 | }; | 108 | }; |
| 109 | 109 | ||
| 110 | return ( | 110 | return ( |
| 111 | <div> | 111 | <div style={{position: "absolute", width: "calc(100% - 50px)", left: "350px"}}> |
| 112 | {MessageDialogComponent} | 112 | {MessageDialogComponent} |
| 113 | {MessageDialogLoadComponent} | 113 | {MessageDialogLoadComponent} |
| 114 | {ConfirmDialogComponent} | 114 | {ConfirmDialogComponent} |