Skip to content

Commit bd91621

Browse files
Fix long link wrapping and widen calls admin detail pane (#708)
Co-authored-by: Cursor Agent <cursoragent@cursor.com>
1 parent 92bb0ba commit bd91621

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

app/routes/calls_.admin/$callId.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ function CallListing({ call }: { call: SerializeFrom<typeof loader>['call'] }) {
164164
<H6 as="h3" className="mb-2">
165165
Notes
166166
</H6>
167-
<Paragraph className="whitespace-pre-wrap text-gray-600 dark:text-slate-300">
167+
<Paragraph className="whitespace-pre-wrap break-words [overflow-wrap:anywhere] text-gray-600 dark:text-slate-300">
168168
{call.notes ?? 'No notes provided.'}
169169
</Paragraph>
170170
</div>

app/routes/calls_.admin/_layout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export default function CallListScreen({
5252
</div>
5353

5454
{/* Sidebar - Call List */}
55-
<div className="col-span-full lg:col-span-4">
55+
<div className="col-span-full lg:col-span-3">
5656
<H6 as="h3" className="mb-4">
5757
Pending Calls
5858
</H6>
@@ -123,7 +123,7 @@ export default function CallListScreen({
123123
<Spacer size="xs" className="col-span-full block lg:hidden" />
124124

125125
{/* Main Content Area */}
126-
<div className="col-span-full lg:col-span-7 lg:col-start-6">
126+
<div className="col-span-full lg:col-span-8 lg:col-start-5">
127127
<Outlet />
128128
</div>
129129
</Grid>

0 commit comments

Comments
 (0)