Cybertron
Cybertron copied to clipboard
Settings modal no longer completely scrollable?
Ever since the recent update to the Cybertron theme, the left navigation items in the settings modal seems to be getting truncated at the bottom with no scrollbar.
Please see the below screenshot:
In comparison, the same settings modal with the Default theme in Obsidian looks like this:
I believe the following two changes in the theme.css file should fix the issue
Instead of:
.modal.mod-settings .vertical-tab-header {
height: 90vh;
}
.modal.mod-settings .vertical-tab-content-container {
height: 90vh;
}
we need to update it to:
.modal.mod-settings .vertical-tab-header {
height: 100%;
}
.modal.mod-settings .vertical-tab-content-container {
height: 100%;
}