I am currently using the matTooltip
feature from Angular Material for an input field. However, on Safari, the input field appears to be overlapping, making it impossible to type in.
Despite my attempts to change the position of the toolTip, the issue persists.
<input type="text" matInput matTooltip="Vestibulum ac diam sit amet quam vehicula." matTooltipPosition="right" formControlName="password" name="xxx" #inputXxxx>
The toolTip functions correctly on all other browsers.
Here is a visual representation of how the Input field appears on Safari:
https://i.sstatic.net/9hk5P.png
Does anyone have any suggestions for resolving this issue?