Cybertron icon indicating copy to clipboard operation
Cybertron copied to clipboard

Settings modal no longer completely scrollable?

Open kiranjholla opened this issue 1 year ago • 1 comments

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: image

In comparison, the same settings modal with the Default theme in Obsidian looks like this: image

kiranjholla avatar Feb 29 '24 15:02 kiranjholla

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%;
}

kiranjholla avatar Feb 29 '24 15:02 kiranjholla