Fix tooltip text overflow in some languages

This commit is contained in:
natsoni
2024-04-18 11:09:28 +02:00
parent c2d649d3f4
commit 89ef5fe33d
2 changed files with 3 additions and 3 deletions

View File

@@ -98,6 +98,6 @@ export class BlockOverviewTooltipComponent implements OnChanges {
}
getTooltipLeftPosition(): string {
return window.innerWidth < 392 ? '-40px' : this.tooltipPosition.x + 'px';
return window.innerWidth < 392 ? '-50px' : this.tooltipPosition.x + 'px';
}
}