Skip to content

Commit c0c6cc4

Browse files
committed
Fixing max width on posts
1 parent ff14d4c commit c0c6cc4

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

templates/static/main.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -558,6 +558,8 @@ input, textarea {
558558
padding-right: 10px; } }
559559
.post .post-content {
560560
box-sizing: border-box; }
561+
.post .post-content img {
562+
max-width: 100%; }
561563
.post .post-content blockquote {
562564
background: #eeeeee;
563565
margin: 0px;

templates/static/partials/_thread.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@
6161
.post-content {
6262
box-sizing: border-box;
6363

64+
img {
65+
max-width: 100%;
66+
}
67+
6468
blockquote {
6569
background: $color-gray;
6670
margin: 0px;

0 commit comments

Comments
 (0)