From 72564dc7cbd72cb997556b524cf782bdb1b84a8b Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Tue, 11 Oct 2022 17:06:28 +0200 Subject: [PATCH] Docs(style): remove box shadows and border on fig caption images --- website/src/components/Figure/styles.module.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/website/src/components/Figure/styles.module.css b/website/src/components/Figure/styles.module.css index d064b22dec..5e51ce0600 100644 --- a/website/src/components/Figure/styles.module.css +++ b/website/src/components/Figure/styles.module.css @@ -5,6 +5,11 @@ figure { padding: var(--ifm-pre-padding); } +figure img { + box-shadow: none; + border: none; +} + figure * + * { margin-block-start: var(--ifm-pre-padding); }