<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
.nav-overflow {
background-color: green
}
@media only screen and (max-height: 557px) {
.nav-overflow {
list-style-type: none;
overflow-y: auto;
white-space: nowrap;
-webkit-overflow-scrolling: touch;
height: 100vh;
background-color: red
}
}
</style>
</head>
<body>
<div class="nav-overflow">
<ul>
<li>
<a href="">jeden</a>
</li>
<li>
<a href="">jeden</a>
</li>
<li>
<a href="">jeden</a>
</li>
<li>
<a href="">jeden</a>
</li>
<li>
<a href="">jeden</a>
</li>
<li>
<a href="">jeden</a>
</li>
<li>
<a href="">jeden</a>
</li>
</ul>
</div>
</body>
</html>