From bd621491b337fb3422d2338b5466c4f0c7bed690 Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Thu, 29 Jan 2026 08:37:52 -0500 Subject: [PATCH] Add spacing between reply form and thread/no-comments --- .../static/theme/meta/css/meta.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/remarkbox_theme_meta/static/theme/meta/css/meta.css b/remarkbox_theme_meta/static/theme/meta/css/meta.css index c299a9b..db15641 100644 --- a/remarkbox_theme_meta/static/theme/meta/css/meta.css +++ b/remarkbox_theme_meta/static/theme/meta/css/meta.css @@ -297,3 +297,19 @@ input.button-small { .burger-label span { background-color: rgb(var(--white)); } + +/* Inline label for radio buttons */ +label.inline-label { + display: inline; + margin-bottom: 0; + font-weight: normal; +} + +/* Spacing between reply form and thread/no-comments */ +.thread { + margin-top: 2rem; +} + +.no-comments { + margin-top: 2rem; +}