Skip to content

Commit

Permalink
Reduce padding
Browse files Browse the repository at this point in the history
  • Loading branch information
teodorus-nathaniel committed Jul 10, 2024
1 parent 916ebe1 commit c29d5cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/chats/ChatRoom/ChatRoom.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ function ChatInputWrapper({

return (
<>
<Component className={cx('mt-auto flex py-2 pt-0')}>
<Component className={cx('mt-auto flex py-2 pb-1 pt-0')}>
<div className='flex flex-1 flex-col'>
<ActionDetailBar
chatId={chatId}
Expand Down
2 changes: 1 addition & 1 deletion src/modules/chat/HomePage/ChatContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ function Tabs({
const tabSize: 'sm' | 'md' = isAdmin ? 'sm' : 'md'

return (
<div className='sticky top-14 grid h-14 grid-flow-col items-center gap-1 bg-background px-4 py-2'>
<div className='sticky top-14 grid h-12 grid-flow-col items-center gap-1 bg-background px-4'>
{isAdmin && (
<>
<TabButton
Expand Down

0 comments on commit c29d5cb

Please sign in to comment.