chore:fixed overflow

This commit is contained in:
vamsi krishna
2024-12-10 14:36:31 +05:30
parent 9fc5ba0128
commit 4797d6fdd4
2 changed files with 4 additions and 4 deletions

View File

@@ -95,11 +95,11 @@ export const NotificationItem: FC<INotificationItem> = observer((props) => {
>
{/* Issue card header */}
<Row className="flex items-center gap-1">
<span className="text-sm font-semibold break-words">
<span className="text-sm font-medium break-words">
{issue.sequence_id}-{issue.identifier}
</span>
<div className="flex-1 flex gap-2 justify-between items-center">
<span className="overflow-hidden whitespace-normal text-sm break-all truncate line-clamp-1 text-custom-text-100">
<span className="overflow-hidden whitespace-normal text-sm break-all truncate line-clamp-1 text-custom-text-00">
{issue.name}
</span>
</div>

View File

@@ -43,12 +43,12 @@ export const NotificationsSidebar: FC = observer(() => {
return (
<div
className={cn(
"relative border-0 md:border-r border-custom-border-200 z-[10] flex-shrink-0 bg-custom-background-100 h-full transition-all",
"relative border-0 md:border-r max-md:overflow-hidden border-custom-border-200 z-[10] flex-shrink-0 bg-custom-background-100 h-full transition-all",
currentSelectedNotificationId ? "w-0 md:w-2/6" : "w-full md:w-2/6"
)}
>
<div className="relative w-full h-full flex flex-col">
<Row className="h-[3.75rem] border-b border-custom-border-200 flex">
<Row className="h-[3.75rem] border-b border-custom-border-200 flex overflow-hidden">
<NotificationSidebarHeader workspaceSlug={workspaceSlug.toString()} />
</Row>