mirror of
https://github.com/makeplane/plane.git
synced 2026-07-13 22:09:12 +02:00
chore:fixed overflow
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user