media query for navbar scrolling

This commit is contained in:
vabene1111
2022-06-28 07:30:42 +02:00
parent 44a19e03e8
commit 6643008baf

View File

@@ -422,15 +422,17 @@
</script> </script>
<style> <style>
.navbar-collapse { @media screen and (max-width: 1000px) {
max-height: 60vh; .navbar-collapse {
overflow-y: auto; max-height: 60vh;
overflow-x: hidden; overflow-y: auto;
} overflow-x: hidden;
}
.collapsing { .collapsing {
overflow-y: hidden; overflow-y: hidden;
overflow-x: hidden; overflow-x: hidden;
}
} }
</style> </style>