Thank you. That was the problem. I’m using the “Cybertron” theme and when I reverted back to the default Obsidian theme then it was fixed.
I looked into the “Cybertron.css” file and found this line:
/*settings pop-up*/
.modal {
background-color: var(--background-primary);
border-radius: 4px;
border: 1px solid var(--background-primary);
box-shadow: 0 2px 8px var(--background-modifier-box-shadow);
padding: 30px 50px;
position: relative;
min-width: 560px; /*👈 This line*/
}
I suspect that min-width: 560px was forcing the settings window to be too large but I’m not sure. For some reason, the Cybertron is correctly working now and is no longer too wide.