diff --git a/manifest.json b/manifest.json index e5e57d2..3aaf9a9 100644 --- a/manifest.json +++ b/manifest.json @@ -1,9 +1,9 @@ { - "id": "memochron", - "name": "MemoChron", - "version": "0.15.1", - "minAppVersion": "1.8.9", - "description": "Calendar integration and note creation for with support for public iCalendar URLs", - "author": "Michalis Efstratiadis", - "isDesktopOnly": false -} + "id": "memochron", + "name": "MemoChron", + "version": "0.16.0", + "minAppVersion": "1.8.9", + "description": "Calendar integration and note creation for with support for public iCalendar URLs", + "author": "Michalis Efstratiadis", + "isDesktopOnly": false +} \ No newline at end of file diff --git a/package.json b/package.json index 227b674..f24d2a0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "memochron", - "version": "0.15.1", + "version": "0.16.0", "description": "Calendar integration and note creation plugin for Obsidian", "main": "main.js", "scripts": { diff --git a/src/settings/SettingsTab.ts b/src/settings/SettingsTab.ts index 311bb7c..ef55f1a 100644 --- a/src/settings/SettingsTab.ts +++ b/src/settings/SettingsTab.ts @@ -134,6 +134,9 @@ export class SettingsTab extends PluginSettingTab { const locationSetting = new Setting(containerEl) .setName("Note location") .setDesc("Where to save new event notes"); + + // Add our container class to the setting item + locationSetting.settingEl.addClass("memochron-setting-item-container"); const locationInput = new TextComponent(locationSetting.controlEl); locationInput diff --git a/styles.css b/styles.css index 670f681..c82d14d 100644 --- a/styles.css +++ b/styles.css @@ -266,7 +266,7 @@ border-bottom: none; } -.setting-item { +.memochron-setting-item-container { position: relative; } diff --git a/versions.json b/versions.json index 20cba93..591bdb5 100644 --- a/versions.json +++ b/versions.json @@ -4,5 +4,6 @@ "0.13.2": "1.8.9", "0.14.0": "1.8.9", "0.15.0": "1.8.9", - "0.15.1": "1.8.9" + "0.15.1": "1.8.9", + "0.16.0": "1.8.9" } \ No newline at end of file