Skip to content

Commit

Permalink
add font-medium to lobby name in header
Browse files Browse the repository at this point in the history
  • Loading branch information
salvoilmiosi committed Sep 28, 2024
1 parent 48ec633 commit 2a84156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function Header({ scene, settings, connection }: HeaderProps) {
<div className="flex items-center">
<span className="self-center text-2xl font-semibold whitespace-nowrap text-white">{getLabel('ui', 'APP_TITLE')}</span>
</div>
{'lobbyInfo' in scene && <div className="text-blue-500 whitespace-nowrap overflow-x-hidden text-ellipsis">
{'lobbyInfo' in scene && <div className="text-blue-500 font-medium whitespace-nowrap overflow-x-hidden text-ellipsis">
{ scene.lobbyInfo.name }
</div>}
<div className="flex items-center">
Expand Down

0 comments on commit 2a84156

Please sign in to comment.