Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/renderer/src/components/ModuleTitle.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export const ModuleTitle = ({

return (
<div className="px-5">
<div className={ClassNames("flex justify-between items-center pt-2 pb-2 border border-t-0 border-r-0 border-l-0 dark:border-borderDark border-borderLight min-h-[28px]", className)}>
<div className={ClassNames("flex justify-between items-center pb-1 border border-t-0 border-r-0 border-l-0 dark:border-borderDark border-borderLight h-[28px]", className)}>
{title && <h1
ref={titleRef}
className="font-medium text-base leading-5 dark:text-titleDark text-titleLight truncate"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export const ContactNameAndActions = ({
<div
ref={nameRef}
className={classNames(
'min-w-0 flex-1 dark:text-titleDark text-titleLight font-medium text-[14px] leading-5 truncate break-all whitespace-nowrap ',
'min-w-0 dark:text-titleDark text-titleLight font-medium text-[14px] leading-5 truncate break-all whitespace-nowrap ',
onOpenDetail ? 'cursor-pointer hover:underline' : '',
)}
onClick={onClick}
Expand Down
Loading