fixed navbar viewport issues

This commit is contained in:
vabene1111 2022-06-28 06:19:58 +02:00
parent f1d54675c3
commit b5207d91ba

View File

@ -316,7 +316,8 @@
{% endif %} {% endif %}
{{ us.space.name }}</a> {{ us.space.name }}</a>
{% endfor %} {% endfor %}
<a class="dropdown-item" href="{% url 'view_space_overview' %}"><i class="fas fa-list"></i> {% trans 'Overview' %}</a> <a class="dropdown-item" href="{% url 'view_space_overview' %}"><i
class="fas fa-list"></i> {% trans 'Overview' %}</a>
{% endif %} {% endif %}
<div class="dropdown-divider"></div> <div class="dropdown-divider"></div>
<a class="dropdown-item" href="{% url 'docs_markdown' %}"><i <a class="dropdown-item" href="{% url 'docs_markdown' %}"><i
@ -420,5 +421,18 @@
}); });
</script> </script>
<style>
.navbar-collapse {
max-height: 60vh;
overflow-y: auto;
overflow-x: hidden;
}
.collapsing {
overflow-y: hidden;
overflow-x: hidden;
}
</style>
</body> </body>
</html> </html>