aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'frontend')
-rw-r--r--frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx4
-rw-r--r--frontend/app/components/UserLabel.tsx2
2 files changed, 4 insertions, 2 deletions
diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx
index b382850..ff60641 100644
--- a/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx
+++ b/frontend/app/components/GolfWatchApps/GolfWatchAppGamingMultiplayer.tsx
@@ -88,7 +88,9 @@ export default function GolfWatchAppGamingMultiplayer({
<td className="px-6 py-4 whitespace-nowrap text-gray-900">
{entry.player.display_name}
{entry.player.label && (
- <UserLabel label={entry.player.label} />
+ <span className="mx-2">
+ <UserLabel label={entry.player.label} />
+ </span>
)}
</td>
<td className="px-6 py-4 whitespace-nowrap text-gray-900">
diff --git a/frontend/app/components/UserLabel.tsx b/frontend/app/components/UserLabel.tsx
index b436ad6..16ef4d4 100644
--- a/frontend/app/components/UserLabel.tsx
+++ b/frontend/app/components/UserLabel.tsx
@@ -4,7 +4,7 @@ type Props = {
export default function UserLabel({ label }: Props) {
return (
- <span className="bg-sky-700 text-sky-50 rounded-lg p-3 text-sm">
+ <span className="bg-sky-600 text-sky-50 rounded-lg p-3 text-sm">
{label}
</span>
);