From 2de67c365d8f0222b018331828589437f6de629e Mon Sep 17 00:00:00 2001 From: Olivier FAURE Date: Mon, 9 May 2022 12:43:12 +0000 Subject: [PATCH] Add attributes to details blocks `` blocks in the minima theme have no attributes applied; which means they're not aligned with other paragraphs. This commit adds properties to detail matching those of other block types in minima. --- assets/main.scss | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/assets/main.scss b/assets/main.scss index 1bfeffc..d384e3e 100644 --- a/assets/main.scss +++ b/assets/main.scss @@ -8,3 +8,10 @@ img.center { margin: auto; display: block; } + +# Based on https://github.com/jekyll/minima/blob/master/_sass/minima/_base.scss +details { + margin: 0; + padding: 0; + margin-bottom: $spacing-unit / 2; +}