Skip to content

Commit

Permalink
fix(ui5-tabcontainer): remove scroll from empty tabs (#2148)
Browse files Browse the repository at this point in the history
  • Loading branch information
fifoosid committed Aug 28, 2020
1 parent 13c1ac5 commit 11af57e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/main/src/themes/Tab.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
:host {
display: inline-block;
width: 100%;
height: 100%;
}

.ui5-tab-root {
Expand Down
5 changes: 3 additions & 2 deletions packages/main/src/themes/TabContainer.css
Original file line number Diff line number Diff line change
Expand Up @@ -107,11 +107,12 @@
}

.ui5-tc__contentItem {
height: 100%;
max-height: 100%;
display: flex;
overflow: auto;
}

.ui5-tc__contentItem--hidden {
.ui5-tc__contentItem[hidden] {
display: none;
}

Expand Down

0 comments on commit 11af57e

Please sign in to comment.