We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 303267d commit 011bb4cCopy full SHA for 011bb4c
app/assets/stylesheets/public.css.scss
@@ -65,9 +65,11 @@ header {
65
right: 0;
66
margin: 0 auto;
67
68
- img {
+ .img-wrap {
69
border: 2px solid $main-color;
70
+ border-radius: 50%;
71
padding: 2px;
72
+ display: inline-block;
73
}
74
75
h1 {
app/views/layouts/_header.html.erb
@@ -1,6 +1,8 @@
1
<header class="text-center">
2
<% if Setting.website.avatar.present? %>
3
- <img class="img-circle" src="<%= Setting.website.avatar %>?s=200&r=g">
+ <div class="img-wrap">
4
+ <img class="img-circle" src="<%= Setting.website.avatar %>">
5
+ </div>
6
<% end %>
7
8
<h1><%= Setting.website.title %></h1>
0 commit comments