fix: clickhouse builder cursor issue (#5065)

This commit is contained in:
Vikrant Gupta 2024-05-23 22:42:50 +05:30 committed by GitHub
parent f8b8080853
commit 93babc3019
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -86,12 +86,9 @@ function ClickHouseQueryBuilder({
colors: { colors: {
'editor.background': Color.BG_INK_300, 'editor.background': Color.BG_INK_300,
}, },
// fontFamily: 'SF Mono', });
fontFamily: 'Space Mono', document.fonts.ready.then(() => {
fontSize: 20, monaco.editor.remeasureFonts();
fontWeight: 'normal',
lineHeight: 18,
letterSpacing: -0.06,
}); });
} }