Every time I bring up a modal using bootstrap, an unnecessary slider bar appears on the side.
Could CSS be the culprit behind this issue?
How can I prevent this from happening?
CSS code for the modal
.modal {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1040;
display: none;
overflow: auto;
overflow-y: scroll;
}