Make image preview links embed

This commit is contained in:
Butter Cat 2024-04-07 12:07:53 -04:00
parent c86ca16c1a
commit 10499df423
No known key found for this signature in database
GPG key ID: FF37BE4FDDB74419
2 changed files with 22 additions and 0 deletions

View file

@ -1008,6 +1008,10 @@ a.search_subreddit:hover {
overflow-wrap: anywhere;
}
.post_body img {
max-width: 100%;
}
.post_poll {
grid-area: post_poll;
padding: 5px 15px 5px 12px;
@ -1171,6 +1175,16 @@ a.search_subreddit:hover {
display: flex;
}
.comment img {
max-width: 50%;
}
@media screen and (max-width: 500px) {
.comment img {
max-width: 80%;
}
}
.comment_left, .comment_right {
display: flex;
flex-direction: column;