Skip to content

Commit 7738172

Browse files
committed
[chores] Moved CSS for allauth templates to dedicated CSS
Avoid screwing up the whole layout for a few pages.
1 parent 3dc35c2 commit 7738172

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#content p {
2+
margin: 10px 0;
3+
}
4+
button,
5+
form label {
6+
margin-right: 5px;
7+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
{% extends "admin/base_site.html" %}
2+
{% load static %}
23
{% block title %}OpenWISP{% endblock %}
34

5+
{% block extrastyle %}
6+
{{ block.super }}
7+
<link rel="stylesheet" type="text/css" href="{% static 'openwisp-users/accounts/css/non-admin.css' %}" />
8+
{% endblock %}
49
{% block breadcrumbs %}{% endblock %}

0 commit comments

Comments
 (0)