fix(editor): scale code block font size with editor zoom (#208)

Code blocks used a hardcoded 13px font-size instead of scaling with --editor-font-size, so they didn't resize with the rest of the editor content when zooming.

Reviewed-on: https://codeberg.org/ArkHost/HelixNotes/pulls/208
This commit is contained in:
mf
2026-07-07 12:04:49 +02:00
committed by ArkHost
parent a13d17ed81
commit 95565d7506
+1 -1
View File
@@ -8363,7 +8363,7 @@
overflow-x: auto; overflow-x: auto;
background: none; background: none;
padding: 0; padding: 0;
font-size: 13px; font-size: 0.93em;
line-height: 1.5; line-height: 1.5;
} }