I have developed a straightforward application utilizing Bootstrap version 3.3.5 and included a button with a dropdown feature:
<!-- Large button group -->
<div class="btn-group">
<button class="btn btn-default btn-lg dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Large button <span class="caret"></span>
</button>
<ul class="dropdown-menu">
...
</ul>
</div>
When viewed on Safari iOS, the down
icon appears to be truncated:
https://i.sstatic.net/xi8XQ.png
Is there a possible solution for this issue?