Skip to content

fix: container fixed height issue #312

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

Merged
Merged
Show file tree
Hide file tree
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
Next Next commit
fix: container fixed height issue
  • Loading branch information
Aqib Mirza committed Jul 27, 2023
commit dc6316b1b7c74919941abe07e7b6c3d8dc2bb1ac
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ const TabbedContainer = (props: TabbedContainerProps) => {
// log.debug("TabbedContainer. props: ", props);

return (
<div style={{padding: props.style.margin}}>
<div style={{padding: props.style.margin, height: '100%'}}>
<StyledTabs
activeKey={activeKey}
$style={style}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ export function TriContainer(props: TriContainerProps) {
const paddingWidth = isMobile ? 7 : 19;

return (
<div style={{padding: style.margin}}>
<div style={{padding: style.margin, height: '100%'}}>
<Wrapper $style={style}>
{showHeader && (
<BackgroundColorContext.Provider value={container.style.headerBackground}>
Expand Down