From cbbff2e5f5d83fbd913c01e7a7bad4729e78cb80 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Sun, 19 Jul 2020 22:57:42 -0700 Subject: [PATCH] Create padding around chat avatars and the colored container --- webroot/index.html | 10 +++++----- webroot/styles/layout.css | 9 +++++++-- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/webroot/index.html b/webroot/index.html index 8121ae735..19dc84400 100644 --- a/webroot/index.html +++ b/webroot/index.html @@ -124,11 +124,11 @@
- +
+ +

{{ message.author }}

diff --git a/webroot/styles/layout.css b/webroot/styles/layout.css index 58a8df08a..123b07529 100644 --- a/webroot/styles/layout.css +++ b/webroot/styles/layout.css @@ -407,10 +407,15 @@ h2 { align-items: flex-start; } .message-avatar { - height: 2.5em; - width: 2.5em; margin-right: .75em; } +.message-avatar img { + max-width: unset; + height: 25.em; + width: 2.5em; + padding: 6px; +} + .message-content { font-size: .85em; }