.block {
overflow-y: auto;
scrollbar-width: none; // firefox
}
.block::-webkit-scrollbar { // остальные браузеры
height: 0;
}
const $li = document.querySelectorAll('#menu li');
$li.forEach(elem => {
elem.addEventListener('click', function () {
$li.forEach(el => el.classList.remove('selected'));
this.classList.add('selected');
});
});