Skip to content

Commit

Permalink
style: fix height of table when changing parent max-height
Browse files Browse the repository at this point in the history
Signed-off-by: Trae Yelovich <[email protected]>
  • Loading branch information
traeok committed Jan 10, 2025
1 parent b127ed0 commit 9f84deb
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions packages/zowe-explorer/src/webviews/src/table-view/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ html {

.table-view {
margin-top: 1em;
height: 88vh;
height: calc(100vh - 5em);
}

.ag-theme-vsc {
Expand All @@ -22,18 +22,6 @@ html {
--ag-selected-row-background-color: var(--vscode-notebook-selectedCellBackground);
}

@media (max-height: 480px) {
.table-view {
height: 78vh;
}
}

@media (max-height: 300px) {
.table-view {
height: 68vh;
}
}

.ctx-menu-open .ag-body-viewport {
overflow: hidden !important;
}
Expand Down

0 comments on commit 9f84deb

Please sign in to comment.