Skip to content

Commit 664927c

Browse files
committed
fix: adjust chat border radius for better responsiveness (#193)
1 parent 2240eff commit 664927c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/features/chats/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,12 +160,12 @@ export default function Chats() {
160160
{selectedUser ? (
161161
<div
162162
className={cn(
163-
'bg-background absolute inset-0 start-full z-50 hidden w-full flex-1 flex-col rounded-md border shadow-xs sm:static sm:z-auto sm:flex',
163+
'bg-background absolute inset-0 start-full z-50 hidden w-full flex-1 flex-col border shadow-xs sm:static sm:z-auto sm:flex sm:rounded-md',
164164
mobileSelectedUser && 'start-0 flex'
165165
)}
166166
>
167167
{/* Top Part */}
168-
<div className='bg-card mb-1 flex flex-none justify-between rounded-t-md p-4 shadow-lg'>
168+
<div className='bg-card mb-1 flex flex-none justify-between p-4 shadow-lg sm:rounded-t-md'>
169169
{/* Left */}
170170
<div className='flex gap-3'>
171171
<Button

0 commit comments

Comments
 (0)