Skip to content

Commit

Permalink
stop long domain names from taking multiple lines
Browse files Browse the repository at this point in the history
  • Loading branch information
subhoghoshX committed Jul 26, 2024
1 parent 1031d9c commit 2b92d8e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/newtab/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ export default function App() {
/>
<AvatarFallback>{hostName[0]}</AvatarFallback>
</Avatar>
{hostName}
<span className="line-clamp-1 text-left">
{hostName}
</span>
</div>
<span className="w-20 text-right tabular-nums">
{hour ? hour + "h" : ""}{" "}
Expand Down

0 comments on commit 2b92d8e

Please sign in to comment.