diff --git a/src/App.css b/src/App.css index a0c6250..1f888e1 100644 --- a/src/App.css +++ b/src/App.css @@ -198,3 +198,18 @@ a:active { .Settings-setting label { margin-inline-start: 8px; } + +.top-right { + position: absolute; + top: 5px; + right: 5px; +} + +.emoji-link { + font-size: 150%; + text-decoration: none; +} + +.top-right a + a { + margin-inline-start: 8px; +} diff --git a/src/App.tsx b/src/App.tsx index 05071ed..b65ec78 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -46,19 +46,36 @@ function App() {

hello wordl

-
+
{page !== "game" ? ( - setPage("game")}> - Close + setPage("game")} + title="Close" + aria-label="Close" + > + ❌ ) : ( <> - setPage("about")}> - Help + setPage("about")} + title="About" + aria-label="About" + > + ❓ - {" • "} - setPage("settings")}> - Settings + setPage("settings")} + title="Settings" + aria-label="Settings" + > + ⚙️ )}