mirror of
https://github.com/memohai/Memoh.git
synced 2026-04-27 07:16:19 +09:00
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:
@@ -52,7 +52,7 @@ onMounted(() => {
|
||||
readOnly: props.readonly,
|
||||
automaticLayout: true,
|
||||
minimap: { enabled: false },
|
||||
scrollBeyondLastLine: false,
|
||||
scrollBeyondLastLine: true,
|
||||
fontSize: 13,
|
||||
lineNumbers: 'on',
|
||||
renderLineHighlight: 'line',
|
||||
|
||||
Reference in New Issue
Block a user