fix(web): allow Monaco editor to fill full container height

Change scrollBeyondLastLine from false to true so the editor background
extends beyond the last line of content, filling the entire container.
This commit is contained in:
Acbox
2026-03-11 17:25:09 +08:00
parent 14aadae3ca
commit ec4181d53a
@@ -52,7 +52,7 @@ onMounted(() => {
readOnly: props.readonly,
automaticLayout: true,
minimap: { enabled: false },
scrollBeyondLastLine: false,
scrollBeyondLastLine: true,
fontSize: 13,
lineNumbers: 'on',
renderLineHighlight: 'line',