commit: b9b4181f174893e023658b1cdd4720b24c309f4d
parent b5d4c43bc2c59fff2e57fcc091c62481e677c973
Author: HJ <30-hj@users.noreply.git.pleroma.social>
Date: Mon, 2 Jan 2023 16:28:05 +0000
Merge branch 'from/develop/tusooa/1221-quote-style' into 'develop'
Improve quote style
Closes #1221
See merge request pleroma/pleroma-fe!1697
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/src/components/rich_content/rich_content.scss b/src/components/rich_content/rich_content.scss
@@ -1,7 +1,11 @@
+@import '../../variables';
+
.RichContent {
blockquote {
- margin: 0.2em 0 0.2em 2em;
+ margin: 0.2em 0 0.2em 0.2em;
font-style: italic;
+ border-left: 0.2em solid var(--faint, $fallback--faint);
+ padding-left: 1em;
}
pre {