fix top margin on kb shortcuts menu
This commit is contained in:
parent
fb7152cb10
commit
3bca16ac73
1 changed files with 2 additions and 1 deletions
|
|
@ -33,7 +33,8 @@ define(function(require, exports, module) {
|
|||
module.exports = function showKeyboardShortcuts (editor) {
|
||||
var kb = getEditorKeybordShortcuts(editor);
|
||||
var el = document.createElement('div');
|
||||
el.innerHTML = '<h1>Keyboard Shortcuts</h1><div>' +
|
||||
el.innerHTML = '<h1 style="padding-top:0; margin-top:0;">' +
|
||||
'Keyboard Shortcuts</h1><div>' +
|
||||
JSON.stringify(kb, null, ' ') +
|
||||
'</div>';
|
||||
el.style.cssText = 'margin:0; padding:0; ' +
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue