Skip to content

Commit 4030243

Browse files
committed
fix(mobile): correct paragraph spacing in note view
1 parent 2c9f14a commit 4030243

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/mobile/v1/src/screens/ViewNote/NoteContent.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,14 +202,14 @@ export function NoteContent({
202202
margin-top: 0 !important;
203203
}
204204
205-
/* Paragraphs */
205+
/* Paragraphs - no margin so single line breaks don't look like double */
206206
p {
207-
margin: 0 0 8px 0;
207+
margin: 0;
208208
}
209209
210210
/* Empty paragraphs should show as spacing (Tiptap uses <p></p> for blank lines) */
211211
p:empty {
212-
min-height: 1.6em;
212+
min-height: 1em;
213213
}
214214
215215
/* Headings */

0 commit comments

Comments
 (0)