diff --git a/plinth/templates/app.html b/plinth/templates/app.html
index 7be43e9be..e50f3f12b 100644
--- a/plinth/templates/app.html
+++ b/plinth/templates/app.html
@@ -26,17 +26,21 @@
{% load static %}
{% block content %}
-
- {% if is_enabled %}
-
- {% else %}
-
- {% endif %}
-
+
- {% block pagetitle %}
- {{ name }}
- {% endblock %}
+
{% block description %}
{% for paragraph in description %}
@@ -44,7 +48,7 @@
{% endfor %}
{% endblock %}
-
+
{% if manual_page %}
@@ -117,6 +121,6 @@
value="{% trans "Update setup" %}"/>
{% endblock %}
-
+
{% endblock %}
diff --git a/static/themes/default/css/plinth.css b/static/themes/default/css/plinth.css
index ce9f98599..60a71d872 100644
--- a/static/themes/default/css/plinth.css
+++ b/static/themes/default/css/plinth.css
@@ -483,7 +483,7 @@ a.menu_link_active {
.toggle-button::before {
content: '';
display: block;
- height: 18px;
+ height: 18px;
width: 18px;
border-radius: 100%;
background: #fff;
@@ -503,3 +503,13 @@ a.menu_link_active {
transform: translateY(-50%) translateX(-116%)
}
+.header-bar {
+ display: flex;
+ flex-flow: row;
+ justify-content: space-between;
+ height: 70px;
+}
+
+.header-bar .app-toggle-container, .header-bar h2 {
+ margin: auto 0;
+}