File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ export default function ConsoleLayoutContent({ children }: { children: React.Rea
7979 { sheets . map ( ( sheet ) => (
8080 < button
8181 onClick = { ( ) => router . push ( `/console/sheets/${ sheet . id } ` ) }
82- 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' : '' } ` }
82+ className = { `py-2 px-2 overflow-hidden text-ellipsis whitespace-nowrap rounded-md flex gap-2 items-center justify-start hover:bg-gray-200 transition-all ${ pathname . includes ( sheet . id ) ? 'bg-gray-200' : '' } ` }
8383 key = { sheet . id }
8484 >
8585 < PiTableBold className = "text-lg font-bold" />
Original file line number Diff line number Diff line change @@ -186,7 +186,7 @@ export default function SettingsPage() {
186186 </ CardHeader >
187187 < CardContent >
188188 < Label > API Key</ Label >
189- < div className = "space-y -2" >
189+ < div className = "flex items-center gap -2" >
190190 < Input value = { apiKey } disabled />
191191 < div className = "flex gap-2" >
192192 < Button onClick = { handleCopyApiKey } size = "icon" > < PiClipboard /> </ Button >
You can’t perform that action at this time.
0 commit comments