We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dbd5fe3 + 3f43d55 commit e49f372Copy full SHA for e49f372
src/common/components/Button/styles.tsx
@@ -38,6 +38,10 @@ export default ({ margin }: { margin?: string }) => css`
38
&.suffix {
39
margin-left: ${margin || 0};
40
}
41
+
42
+ &.no-shrink {
43
+ flex-shrink: 0;
44
+ }
45
46
div {
47
text-align: left;
src/tree/CellTree.tsx
@@ -102,7 +102,7 @@ export const CellTree = <T extends TableNode>({
102
<Cell {...passThrough}>
103
<div css={style}>
104
<Button
105
- className="prefix narrow"
+ className="prefix narrow no-shrink"
106
margin={icon ? mergedTreeIconOptions.margin : mergedTreeIconOptions.noIconMargin}
107
onClick={handleClick}
108
>
0 commit comments