Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Table] Fix Table sizing when shown in flex parent #1479

Merged
merged 6 commits into from
Aug 22, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/table/src/quadrants/_quadrants.scss
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,10 @@ $table-quadrant-scroll-container-overflow: 20px;

.bp-table-quadrant-scroll-container {
position: absolute;
top: 0;
right: -$table-quadrant-scroll-container-overflow;
height: 100%;
bottom: 0;
height: auto;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not sure this is entirely necessary, but won't hurt

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Whenever I specify both top and bottom, I like to take height out of the picture so the two schemes don't compete unpredictably.

overflow-x: hidden;
}
}
Expand Down