Typically, I have the following styles on my body:
element.style {
-webkit-app-region: drag;
}
However, when I interact with a md-select element (you can observe this behavior on the provided link), additional styles are applied.
element.style {
-webkit-app-region: drag;
overflow-y: scroll;
position: fixed;
width: 100%;
top: 0px;
}
I attempted to manually set overflow-y
to be hidden, but it keeps getting overwritten. Can anyone suggest a workaround to hide this scrolling bar?