made a new class for settings-item

This commit is contained in:
Mike 2025-05-01 17:45:57 +03:00
parent b25b33f1dc
commit 8a5c4d09ab
No known key found for this signature in database
5 changed files with 15 additions and 11 deletions

View file

@ -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
}

View file

@ -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": {

View file

@ -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

View file

@ -266,7 +266,7 @@
border-bottom: none;
}
.setting-item {
.memochron-setting-item-container {
position: relative;
}

View file

@ -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"
}