From f646c89152de654bcd69091b8fe630cea5b8d715 Mon Sep 17 00:00:00 2001 From: Bastian Venthur Date: Sat, 24 Jun 2023 13:25:17 +0200 Subject: [PATCH] img's have max-width: 100% to avoid overflowing of big images --- CHANGELOG.md | 5 +++++ blag/static/style.css | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f918f1..e4e849a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [unreleased] + +* default theme: `img` have now `max-width: 100%` by default to avoid very + large images overflowing + ## [2.0.0] - 2023-06-16 ### Breaking diff --git a/blag/static/style.css b/blag/static/style.css index 416284a..f00afd6 100644 --- a/blag/static/style.css +++ b/blag/static/style.css @@ -48,6 +48,10 @@ aside { color: var(--foreground-dim); } +img { + max-width: 100%; +} + h1, h2, h3,