diff options
| author | 2021-09-08 21:09:39 +0200 | |
|---|---|---|
| committer | 2021-09-08 21:09:39 +0200 | |
| commit | c80e081bb0ae2f94c894f1f3a9de8d648a89744f (patch) | |
| tree | 6170966724bd0df2ee988fa8f00f87e898b5fa94 /p | |
| parent | c263956397488fe1f063ac939869340fdf6da4cb (diff) | |
fixed: margin around <figure> (#3832)
* fix CSS
* Minor whitespace
Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
Diffstat (limited to 'p')
| -rw-r--r-- | p/themes/base-theme/template.css | 9 | ||||
| -rw-r--r-- | p/themes/base-theme/template.rtl.css | 9 |
2 files changed, 18 insertions, 0 deletions
diff --git a/p/themes/base-theme/template.css b/p/themes/base-theme/template.css index c825ec1d8..6502747b6 100644 --- a/p/themes/base-theme/template.css +++ b/p/themes/base-theme/template.css @@ -96,6 +96,15 @@ img.favicon { vertical-align: middle; } +.content.thin figure, +.content.medium figure { + margin: 8px 0px; +} + +.content figure figcaption { + font-style: italic; +} + .feed.mute::before { content: '🔇'; } diff --git a/p/themes/base-theme/template.rtl.css b/p/themes/base-theme/template.rtl.css index ba673d43e..cd0371d92 100644 --- a/p/themes/base-theme/template.rtl.css +++ b/p/themes/base-theme/template.rtl.css @@ -96,6 +96,15 @@ img.favicon { vertical-align: middle; } +.content.thin figure, +.content.medium figure { + margin: 8px 0px; +} + +.content figure figcaption { + font-style: italic; +} + .feed.mute::before { content: '🔇'; } |
