I added code to remove vertical scroll bar from the entire scope of the application. The code is below which I added to styles.css. But it has also removed scroll bars from the mat-select component, as a result my list of the dropdown is no more easily accessible. Please if someone can help me to understand how can I separate the mat-select from overall application style so that I can scroll my drop downs.
html {
overflow: scroll;
overflow-x: hidden;
scrollbar-width: none;
}
::-webkit-scrollbar {
width: 0px; /* Remove scrollbar space */
background: transparent; /* Optional: just make scrollbar invisible */
scrollbar-width: none;
}