From 9e12368685ca2b465bc60e978d57a88be6a9af33 Mon Sep 17 00:00:00 2001 From: Will Faught Date: Wed, 26 Jun 2024 21:33:41 -0700 Subject: [PATCH] Add bottom margin to all content elements --- exampleSite/content/content/emoji-support.md | 1 - exampleSite/content/content/rich-content.md | 4 ---- layouts/partials/paige/style.html | 4 ++++ 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/exampleSite/content/content/emoji-support.md b/exampleSite/content/content/emoji-support.md index 1cdc93e8..8d979093 100644 --- a/exampleSite/content/content/emoji-support.md +++ b/exampleSite/content/content/emoji-support.md @@ -39,7 +39,6 @@ The [`emojify`](https://gohugo.io/functions/emojify/) function can be called dir To enable emoji globally, set `enableEmoji` to `true` in your site's [configuration](https://gohugo.io/getting-started/configuration/) and then you can type emoji shorthand codes directly in content files; e.g.

🙈 :see_no_evil: 🙉 :hear_no_evil: 🙊 :speak_no_evil:

-
The [Emoji cheat sheet](https://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes. diff --git a/exampleSite/content/content/rich-content.md b/exampleSite/content/content/rich-content.md index 2c248893..41d87e50 100644 --- a/exampleSite/content/content/rich-content.md +++ b/exampleSite/content/content/rich-content.md @@ -43,16 +43,12 @@ Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-manageme {{< youtube ZJthWmvUzzc >}} -
- --- ## Twitter Simple Shortcode {{< twitter_simple user="DesignReviewed" id="1085870671291310081" >}} -
- --- ## Vimeo Simple Shortcode diff --git a/layouts/partials/paige/style.html b/layouts/partials/paige/style.html index 40d12138..85e5ea18 100644 --- a/layouts/partials/paige/style.html +++ b/layouts/partials/paige/style.html @@ -39,6 +39,10 @@ padding: 0; } +#paige-content > * { + margin-bottom: 1rem; +} + blockquote { padding: 0.5rem 1rem; border-left: 0.25rem solid var(--bs-border-color);