diff options
author | Vitaly Takmazov | 2018-10-15 12:18:52 +0000 |
---|---|---|
committer | Vitaly Takmazov | 2018-10-15 12:27:30 +0000 |
commit | 76112fd865a3af137dad3e1f3aae2f660f9d83d4 (patch) | |
tree | 17f5817a1053e9f8b2d42d068615a63471f7fd14 /juick-server/src/main | |
parent | 37a29c5fc6ea08a320d018404ece8f23a4a74b38 (diff) |
fix avatar
Diffstat (limited to 'juick-server/src/main')
-rw-r--r-- | juick-server/src/main/assets/style.css | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/juick-server/src/main/assets/style.css b/juick-server/src/main/assets/style.css index baa2d456..e137c3e5 100644 --- a/juick-server/src/main/assets/style.css +++ b/juick-server/src/main/assets/style.css @@ -267,7 +267,8 @@ body > header { #ctitle img { margin-right: 5px; vertical-align: middle; - width: 48px; + max-width: 48px; + max-height: 48px; } #ustats li { font-size: 10pt; @@ -389,14 +390,14 @@ article .tags > a, } .msg-avatar { float: left; - height: 48px; + max-height: 48px; margin-right: 10px; - width: 48px; + max-width: 48px; } .msg-avatar img { - height: 48px; + max-height: 48px; vertical-align: top; - width: 48px; + max-width: 48px; } .msg-cont { background: #FFF; |