mirror of
https://github.com/Ellpeck/ObsidianCustomFrames.git
synced 2024-11-14 14:59:08 +01:00
calm down a bit with the css field's size
This commit is contained in:
parent
cdbd29448a
commit
51e09944db
1 changed files with 1 additions and 1 deletions
2
main.ts
2
main.ts
|
@ -193,7 +193,7 @@ class CustomFramesSettingTab extends PluginSettingTab {
|
|||
.setName("Additional CSS")
|
||||
.setDesc("A snippet of additional CSS that should be applied to this frame.")
|
||||
.addTextArea(t => {
|
||||
t.inputEl.rows = 10;
|
||||
t.inputEl.rows = 5;
|
||||
t.inputEl.cols = 50;
|
||||
t.setValue(frame.customCss);
|
||||
t.onChange(async v => {
|
||||
|
|
Loading…
Reference in a new issue