body {
background-color: #111111;
color: #ffffff;
/*max-width: 100%;*/
overflow-x: hidden;
}
.row {
max-width: 100rem;
}
.svgrow {
min-width: 70rem;
}
.svgrow svg {
overflow-x: auto;
}
I am trying to make the SVG horizontally scrollable on small screens without affecting the body's horizontal scrolling. I also want to ensure that only relative units are used.
Despite trying different positions for the overflow property, I have been unable to achieve the desired result. I am using the foundation framework for this project.