From 1bef976ed7c10dfb48a45d659271f13c2334f547 Mon Sep 17 00:00:00 2001 From: Dustin Michels Date: Mon, 9 Dec 2024 01:23:27 -0500 Subject: [PATCH] small tweaks --- frontend/src/App.vue | 6 +- frontend/src/components/GuessedList.vue | 9 +- frontend/src/components/Radio.vue | 141 ++++++++++++------------ 3 files changed, 78 insertions(+), 78 deletions(-) diff --git a/frontend/src/App.vue b/frontend/src/App.vue index e6a8599..23af749 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -3,7 +3,7 @@

🌍 GeoHearo 🦸

-

Guess the country by its radio

+

Guess the country from its radio stations

@@ -17,7 +17,7 @@
- +
- +
diff --git a/frontend/src/components/GuessedList.vue b/frontend/src/components/GuessedList.vue index bf1eddd..d6af638 100644 --- a/frontend/src/components/GuessedList.vue +++ b/frontend/src/components/GuessedList.vue @@ -6,10 +6,13 @@ {{ index + 1 }}) {{ guess.name }} - {{ + 🎉 + {{ directionToArrow(guess.direction) }} - 🎉 + ({{ formatNumber(guess.distance) }} km) @@ -44,7 +47,7 @@ const formatNumber = (num: number) => { } .panel-name { - flex: 2; /* Takes up twice the space of the other flexible elements */ + flex: 1.5; /* Takes up twice the space of the other flexible elements */ } .panel-direction { diff --git a/frontend/src/components/Radio.vue b/frontend/src/components/Radio.vue index b4ab5db..9b99f27 100644 --- a/frontend/src/components/Radio.vue +++ b/frontend/src/components/Radio.vue @@ -1,83 +1,80 @@