Improve Memo Component Readability

Added spacing between paragraphs in the memo component to enhance readability and improve the overall user experience.
[skip gpt_engineer]
Этот коммит содержится в:
gpt-engineer-app[bot] 2024-12-15 15:11:09 +00:00
родитель 124c11253b
Коммит a535bede46

Просмотреть файл

@ -60,4 +60,13 @@
.memo-body { .memo-body {
white-space: pre-wrap; white-space: pre-wrap;
line-height: 1.5; line-height: 1.5;
} }
/* Add spacing between paragraphs */
.memo-body p {
margin-bottom: 1.5rem;
}
.memo-body p:last-child {
margin-bottom: 0;
}