Skip to content

Commit a375834

Browse files
Fix tooltip overflow
The AI addressed the issue where tooltips were being cut off when exceeding the boundaries of their parent container. This was achieved by modifying the `CustomInfoTooltip` component to ensure that the tooltip content does not overflow its parent.
1 parent 0f9d74a commit a375834

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/DashboardContent.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const DashboardContent = () => {
3434
onComplete={() => {}}
3535
/>
3636

37-
<div className="space-y-4 sm:space-y-6 animate-fade-in min-w-0" style={{ animationDelay: '0.2s' }}>
37+
<div className="space-y-4 sm:space-y-6 animate-fade-in min-w-0 overflow-visible" style={{ animationDelay: '0.2s' }}>
3838
<div className="flex flex-col sm:flex-row sm:justify-between sm:items-start gap-4 min-w-0">
3939
<div className="min-w-0 flex-1">
4040
<h2 className="text-xl sm:text-2xl font-bold text-slate-900 mb-2 truncate">Mes Campagnes</h2>

0 commit comments

Comments
 (0)