vaga / hugo-theme-m10c

A minimalistic (m10c) blog theme for Hugo
https://themes.gohugo.io/hugo-theme-m10c/
MIT License
471 stars 294 forks source link

limit image width #35

Closed Hsn723 closed 5 years ago

Hsn723 commented 5 years ago

Currently, large images are inserted as-is and would take as much horizontal space as needed. This especially breaks the layout for mobile. A simple width: 100% should keep that in check (already tried it out via _extra.scss)

vaga commented 5 years ago

You should add this in .post-content class and replace width to max-width.

Hsn723 commented 5 years ago

Thanks for the review. I've amended the commit to reflect it.

vaga commented 5 years ago

I forgot to say that you must add this in assets/css/components/_post.scss :sweat_smile:

Hsn723 commented 5 years ago

Got it, I've amended the commit.