Browse Source

fix(gui): height correction

Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com>
pull/341/head
Pranav C 3 years ago
parent
commit
f0b33a9287
  1. 6
      packages/nc-gui/assets/style.css

6
packages/nc-gui/assets/style.css

@ -274,10 +274,14 @@ tbody tr:nth-of-type(odd) {
overflow: auto;
}
.table-tabs > .v-tabs-items {
.table-tabs:not(.hidden-tab) > .v-tabs-items {
height: calc(100% - 30px);
overflow: auto;
}
.table-tabs.hidden-tab > .v-tabs-items {
height: 100%;
overflow: auto;
}
.table-tabs > .v-tabs-items > .v-window__container {
height: 100%;

Loading…
Cancel
Save