I'm trying to hide the scrollbar with css but it works on firefox but in Chrome the scrollbar is still there
.tests-container{
@media (min-width: 1025px) {
max-height: 600px;
overflow-y: scroll;
:-webkit-scrollbar{
display: none;
}
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
}