1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #6023: Fix display of bottom banner with uBlock Origin enabled

This commit is contained in:
Jeremy Stretch
2021-03-24 14:25:09 -04:00
parent 997077fc5d
commit ad2742dbb2
3 changed files with 3 additions and 4 deletions

View File

@ -362,9 +362,6 @@ table.report th a {
.text-nowrap {
white-space: nowrap;
}
.banner-bottom {
margin-bottom: 50px;
}
.panel table {
margin-bottom: 0;
}

View File

@ -55,7 +55,7 @@
{% block content %}{% endblock %}
<div class="push"></div>
{% if settings.BANNER_BOTTOM %}
<div class="alert alert-info text-center banner-bottom" role="alert">
<div class="alert alert-info text-center" style="margin-bottom: 50px" role="alert">
{{ settings.BANNER_BOTTOM|safe }}
</div>
{% endif %}