From 85e9db44e715d4da654f75849f6d25824204f4db Mon Sep 17 00:00:00 2001 From: "Kevin C. Coram" Date: Tue, 31 Dec 2019 09:17:43 -0800 Subject: [PATCH] Make 'like' avatars smaller and circular --- layouts/partials/webmentions.html | 2 +- static/css/style.css | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/layouts/partials/webmentions.html b/layouts/partials/webmentions.html index c1301ea..a8b0837 100644 --- a/layouts/partials/webmentions.html +++ b/layouts/partials/webmentions.html @@ -8,7 +8,7 @@ {{ if $likes }}

Likes

{{ range $i, $like := $likes }} - {{ $like.author.name }} + {{ end }} {{ end }} diff --git a/static/css/style.css b/static/css/style.css index db06ebc..22ddb02 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -51,3 +51,9 @@ img.profile.photo { max-width: 60px; padding: 0.5em; } + +img.profile.photo.like { + max-width: 30px; + border-radius: 50%; + padding: 0.5em; +} \ No newline at end of file