We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06daaeb commit 665af40Copy full SHA for 665af40
src/settings/SettingsTab.ts
@@ -49,7 +49,7 @@ export class ShikiSettingsTab extends PluginSettingTab {
49
await this.plugin.saveSettings();
50
})
51
.then(textbox => {
52
- textbox.inputEl.style.width = '250px';
+ textbox.inputEl.addClass('shiki-custom-theme-folder');
53
});
54
55
.addExtraButton(button => {
styles.css
@@ -91,3 +91,8 @@ span.shiki-italic {
91
span.shiki-ul {
92
text-decoration: underline;
93
}
94
+
95
+/* Settings tab */
96
+.setting-item-control input.shiki-custom-theme-folder {
97
+ min-width: 250px;
98
+}
0 commit comments