Skip to content

Commit

Permalink
remove size auto and grow
Browse files Browse the repository at this point in the history
  • Loading branch information
mikewegele committed Nov 8, 2024
1 parent f634ed1 commit d385012
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion example/src/components/contentbarExampleWithText.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const ContentbarExampleWithText = (props: Props) => {
/>
</div>
</ContentCell>
<ContentCell>
<ContentCell style={{width: "300px"}}>
<span>Second row left</span>
</ContentCell>
<ContentCell>
Expand Down
2 changes: 1 addition & 1 deletion src/components/content/contentCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import If from "../helper/If";

interface Props {
container?: boolean;
size?: number | 'auto' | 'grow';
size?: number;
className?: string;
style?: React.CSSProperties;
}
Expand Down

0 comments on commit d385012

Please sign in to comment.