use span instead of small tag to remove subheader on small devices

This commit is contained in:
Jenny Danzmayr 2018-11-25 22:59:18 +01:00
parent 6d8a1971df
commit 6b07181e90
2 changed files with 2 additions and 2 deletions

View file

@ -2,7 +2,7 @@
{% load i18n %}
{% block title %}{% trans 'c3nav control panel' %}{% endblock %}
{% block header_title %}<small>{% trans 'control panel' %}</small>{% endblock %}
{% block header_title %}<span id="subheader">{% trans 'control panel' %}</span>{% endblock %}
{% block header_title_url %}{% url 'control.index' %}{% endblock %}
{% block content %}

View file

@ -64,7 +64,7 @@ header h1 img {
max-width: none;
}
@media (max-width: 500px) {
header h1 small {
header h1 span#subheader {
display: none;
}
}