remove subtitle in header for narrow devices

This commit is contained in:
Laura Klünder 2018-11-25 22:05:39 +01:00
parent f640f1adc0
commit 6d8a1971df
2 changed files with 6 additions and 1 deletions

View file

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

View file

@ -63,6 +63,11 @@ header h1 img {
margin-left: -10px;
max-width: none;
}
@media (max-width: 500px) {
header h1 small {
display: none;
}
}
header #user {
text-align: right;
padding: 0 0 3px 10px;