mirror of
https://github.com/ozntel/oz-calendar.git
synced 2026-07-22 07:40:24 +00:00
Modal Space Issue Resolution
This commit is contained in:
parent
baaa6884f6
commit
d281958d91
1 changed files with 5 additions and 1 deletions
|
|
@ -43,9 +43,13 @@ export class CreateNoteModal extends Modal {
|
|||
folderInputEl = contentEl.createEl('input');
|
||||
new FolderSuggest(folderInputEl);
|
||||
folderInputEl.value = this.plugin.settings.defaultFolder;
|
||||
folderInputEl.style.cssText = inputCss + '; margin-bottom: 15px;';
|
||||
folderInputEl.style.cssText = inputCss;
|
||||
}
|
||||
|
||||
// Additional Space
|
||||
let addSpace = contentEl.createEl('div');
|
||||
addSpace.style.cssText = 'height: 20px;';
|
||||
|
||||
// Create - Cancel Buttons
|
||||
const createButton = contentEl.createEl('button', { text: 'Create Note' });
|
||||
const cancelButton = contentEl.createEl('button', { text: 'Cancel' });
|
||||
|
|
|
|||
Loading…
Reference in a new issue