I would like to change the font sizes of the settings window because they are generally smaller than the regular windows. I would like to change the fonts sizes of everything there both of the left pane and the contents of the settings. ChatGPT was no use to me.
I created and enabled the custom css but none of the options that I found did any change. I already have working css for the other parts of the editor.
Here’s an attempt at a css snippet. The font sizes are HUGE just because I wanted to verify my changes were doing something. You’ll need to modify them to your own liking.
/* settings */
div .vertical-tab-header-group-title {
font-size: 35px !important;
}
div .vertical-tab-nav-item {
font-size: 40px !important;
}
div .setting-item-name {
font-size: 30px !important;
}
div .setting-item-description {
font-size: 25px !important;
}
div .setting-item-control button,
div .setting-item-control input,
div .setting-item-control select,
div .setting-item-control .setting-command-hotkeys span.setting-hotkey
{
font-size: 20px !important;
}