I am trying to eliminate the light grey border around the mobile 'hamburger' menu. I am utilizing font-awesome and Bootstrap 5 (imported through CDN) to create it, but I can't figure out how to get rid of the rounded border.
html
<nav class="navbar navbar-expand-lg navbar-light" role="navigation">
<div class="container">
<a class="navbar-brand" href="#">Navbar</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation">
<i class="fas fa-bars"></i>
</button>
...
css
.navbar-toggler {
&:focus {
outline: none;
}
}
https://i.sstatic.net/GKTUU.png
Everything is functioning correctly except for the border that is still visible: Link to JSfiddle can be found here:
https://jsfiddle.net/r3q1kLcz/ insert image description here