Skip to content

Commit 39c34cb

Browse files
committed
Fix #2812: update author-image width
Fixing author-image to be bound to 100px max. Fixes: #2812 With: ``` width:100px height:auto ``` On firefox, the image is scaled to be 100x100. However on chrome, it ends up being 200x100. Since we wan't to fix the width to 100px (from that original css), I've updated the max-width and max-height to be 100, so the image is always squared.
1 parent ac57b14 commit 39c34cb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

doc-tool/resources/css/dottydoc.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,8 @@ div#doc-page-container > p + h1 {
212212
div#post-footer > img#author-image {
213213
width: auto;
214214
height: auto;
215+
max-width:100px;
216+
max-height:100px;
215217
border-radius: 50%;
216218
}
217219

0 commit comments

Comments
 (0)