Frontmatter
| id | 8482 |
| title | Fix Markdown blockquote margin-right to override browser default |
| state | Closed |
| labels | enhancementdesignai |
| assignees | tobiu |
| createdAt | Jan 9, 2026, 8:53 PM |
| updatedAt | Jan 9, 2026, 8:54 PM |
| githubUrl | https://github.com/neomjs/neo/issues/8482 |
| author | tobiu |
| commentsCount | 1 |
| parentIssue | null |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Jan 9, 2026, 8:54 PM |
Fix Markdown blockquote margin-right to override browser default
tobiu assigned to @tobiu on Jan 9, 2026, 8:53 PM

tobiu
Jan 9, 2026, 8:53 PM
Input from Gemini 3 Pro:
✦ I have updated
resources/scss/src/component/Markdown.scssto explicitly setmargin-right: 0forblockquoteelements. This overrides the browser default (often 40px) and ensures the blockquote is aligned symmetrically with the 0 margin-left.Changes have been pushed to
dev.
tobiu closed this issue on Jan 9, 2026, 8:54 PM
The default browser margin-right for blockquotes is typically 40px, which creates an unbalanced look when
margin-leftis set to 0.Task: Update
resources/scss/src/component/Markdown.scssto explicitly setmargin-right: 0forblockquoteelements, ensuring consistent spacing.