Can anyone help me with this issue? My Bootstrap button is extending outside the screen and I'm not sure how to fix it.
Here is the link to my plunker
<div class="bigone">
<div class="mybar">Nav bar</div>
<div class="main">Main bar</div>
<div class="footer">
<button class="mx-2 my-2 btn btn-block btn-sm btn-danger">Testing</button>
</div>
</div>
Below is the provided css
.bigone {
display: flex;
min-height: 100vh;
flex-direction: column;
}
.main {
flex: 1 1 0;
display: flex;
flex-direction: column;
overflow-y: scroll;
}
Appreciate any assistance, thank you!