fix: text wrap game running

This commit is contained in:
Zamitto 2024-09-14 17:47:42 -03:00
parent 1ef7e58bb5
commit 449ca2adc3

View File

@ -94,7 +94,14 @@ export function SidebarProfile() {
</p>
{userDetails && gameRunning && (
<div>
<div
style={{
overflow: "hidden",
textOverflow: "ellipsis",
whiteSpace: "nowrap",
width: "100%",
}}
>
<small>{gameRunning.title}</small>
</div>
)}