Having an issue similar to this:
https://i.sstatic.net/upjfK.png
How can I adjust the width of the border so that it covers the icon on the left as shown here:
https://i.sstatic.net/LSuOE.png
This is my HTML:
.input-group-text {
width: 48px;
border-right: none;
background-color: #ffffff;
}
[class^="fa-"], [class*=" fa-"] {
display: inline-block;
width: 100%;
}
.LoginInput {
border-left: none;
position: relative;
}
<b-input-group>
<b-input-group-prepend>
<span class="input-group-text"><i class="fa fa-user fa-lg"></i></span>
</b-input-group-prepend>
<b-form-input class="LoginInput" size="lg" placeholder="Username">
</b-form-input>
</b-input-group>
<b-input-group>
<b-input-group-prepend>
<span class="input-group-text"><i class="fa fa-lock fa-lg"></i></span>
</b-input-group-prepend>
<b-form-input class="LoginInput" size="lg" type="password" placeholder="Password">
</b-form-input>
</b-input-group>