Commit 95e1e43d authored by Michal Čihař's avatar Michal Čihař

Include border around big avatar image

parent 027f5795
...@@ -58,7 +58,7 @@ ...@@ -58,7 +58,7 @@
</p> </p>
</div> </div>
<div id="avatar"> <div id="avatar">
<p>{% avatar request.user 128 %}</p> <p class="border">{% avatar request.user 128 %}</p>
<p><a href="https://www.libravatar.org/">{% trans "Avatars are provided using libravatar." %}</a></p> <p><a href="https://www.libravatar.org/">{% trans "Avatars are provided using libravatar." %}</a></p>
</div> </div>
</div> </div>
......
...@@ -11,8 +11,9 @@ ...@@ -11,8 +11,9 @@
<h2>{{ page_profile.get_user_name }}</h2> <h2>{{ page_profile.get_user_name }}</h2>
{% avatar page_user 160 %} <div class="border">
{% avatar page_user 128 %}
</div>
{% if user_projects %} {% if user_projects %}
<h3>{% trans "Projects" %}</h3> <h3>{% trans "Projects" %}</h3>
......
...@@ -270,3 +270,7 @@ img.engage-icon { ...@@ -270,3 +270,7 @@ img.engage-icon {
.ui-tooltip { .ui-tooltip {
max-width: 30em; max-width: 30em;
} }
.border img {
padding: 5px;
border: 1px solid gray;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment