MugishoMp / obsidian-editor-width-slider

With this plugin you can set the line width of the editor in obsidian.
MIT License
45 stars 4 forks source link

Updated Slider UI Size #17

Closed j-finger closed 3 months ago

j-finger commented 3 months ago

By default the slider size is larger than the surrounding UI elements which breaks a lot of plugins. I made the following small modifications to the main.js file to correct this

Default Slider Settings

sliderValueText.style.padding = "8px 5px";
sliderValueText.style.margin = "0px 10px";
sliderValueText.style.fontSize = "13px";

image

Updated Settings

sliderValueText.style.padding = "4px 3px";
sliderValueText.style.margin = "0px 5px";
sliderValueText.style.fontSize = "9px";

image