From fa714906a7f52f6e16493d7ea919a9b80aa589a7 Mon Sep 17 00:00:00 2001 From: Cedric Date: Mon, 15 Jan 2024 20:58:38 +0000 Subject: [PATCH] Force flowchart width to 100% For all floats actually... --- book/book-ebook.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/book/book-ebook.css b/book/book-ebook.css index ecc3e08..f652051 100644 --- a/book/book-ebook.css +++ b/book/book-ebook.css @@ -7,3 +7,12 @@ object-fit: contain; width: auto; } +.float { + max-width: 100%; +} +.float img { + max-width: 100% !important; + height: auto; + object-fit: contain; + width: auto; +}