avoid overflow-y: auto when using overflow-x: hidden
is there a way I can avoid overflow x without affecting the y overflow? first img without overflow-x:hidden;
here's the code for the line
.clinica {
overflow-x: hidden;
}
.clinica__divider::before {
content: "";
position: absolute;
width: 100vw;
height: 2px;
top: 50%;
left: 18rem;
background: var( --e-global-color-accent );
z-index: -1
}
here's the code for the line
.clinica {
overflow-x: hidden;
}
.clinica__divider::before {
content: "";
position: absolute;
width: 100vw;
height: 2px;
top: 50%;
left: 18rem;
background: var( --e-global-color-accent );
z-index: -1
}


