We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b95267 commit 5a62322Copy full SHA for 5a62322
src/app/console/layout.tsx
@@ -79,7 +79,7 @@ export default function ConsoleLayoutContent({ children }: { children: React.Rea
79
{sheets.map((sheet) => (
80
<button
81
onClick={() => router.push(`/console/sheets/${sheet.id}`)}
82
- className={`py-2 px-2 rounded-md flex gap-2 items-center justify-start hover:bg-gray-200 transition-all ${pathname.includes(sheet.id) ? 'bg-gray-200' : ''}`}
+ className={`py-2 px-2 max-w-[200px] overflow-hidden text-ellipsis rounded-md flex gap-2 items-center justify-start hover:bg-gray-200 transition-all ${pathname.includes(sheet.id) ? 'bg-gray-200' : ''}`}
83
key={sheet.id}
84
>
85
<PiTableBold className="text-lg font-bold" />
0 commit comments