On iOS, I'm seeing a strange blue border that I can't seem to get rid of.
I've exhausted all options like :focus and :active, but I can't pinpoint the source of the border. I've searched through different inspect tools on various browsers but I can't replicate the issue. I'm at a loss.
Here is the code snippet:
<li class="menu--list__items zoeken nav-item">
<a class="menu--list__items--link nav-link" href="#" id="zoekenDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Zoeken
<i class="material-icons">
search
</i>
</a>
<div class="dropdown-menu animate slideIn zoeken--dropdown" aria-labelledby="zoekenDropdown">
<input class="form-control dropdown-item" id="zoeken-term" type="search" name="q" placeholder="Waar bent u naar op zoek?" autocomplete="off" aria-label="Search">
<button type="submit" class="zoeken--dropdown--btn">
<i class="material-icons">
search
</i>
</button>
</div>
</li>