Change approach to centering images to avoid a weird element overflow issue
This commit is contained in:
parent
6bb80161e9
commit
8fcd25543d
@ -32,9 +32,12 @@ main li b {
|
||||
padding-right: 2ch
|
||||
}
|
||||
|
||||
figure {
|
||||
position: relative;
|
||||
margin-block: 10px 0;
|
||||
}
|
||||
|
||||
img {
|
||||
margin: 10px 0 10px 50%;
|
||||
transform: translateX(-50%);
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
|
2
lib.js
2
lib.js
@ -620,7 +620,7 @@ export const renderPostDetail = (name, value) =>
|
||||
|
||||
export const renderImage = href => {
|
||||
return `\
|
||||
<a href="${href}"><img src="${href}" loading="lazy"></img></a>`
|
||||
<a href="${href}"> <figure> <img src="${href}" loading="lazy"></img> </figure> </a>`
|
||||
}
|
||||
|
||||
export const renderDate = date =>
|
||||
|
Loading…
x
Reference in New Issue
Block a user