From 2cdec8c4bf56416d53ff096a139f2f01b9b99ef9 Mon Sep 17 00:00:00 2001 From: Maurice Parker Date: Fri, 17 Jan 2020 10:53:22 -0700 Subject: [PATCH] Add a leading border to block quotes so that they can more easily be distinguished. Issue #1639 --- iOS/Resources/styleSheet.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/iOS/Resources/styleSheet.css b/iOS/Resources/styleSheet.css index 970e2a627..ad290e526 100644 --- a/iOS/Resources/styleSheet.css +++ b/iOS/Resources/styleSheet.css @@ -195,8 +195,10 @@ sub { @media (max-width: 420px) { blockquote { - margin-inline-start: 25px; + margin-inline-start: 0; margin-inline-end: 0; + padding-left: 15px; + border-left: 3px solid var(--secondary-accent-color); } }