We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a98550 commit 50e0ea6Copy full SHA for 50e0ea6
electron/renderer/components/grid/grid-item.tsx
@@ -153,6 +153,11 @@ export const GridItem: React.FC<GridItemProps> = forwardRef<
153
style={style}
154
className={className}
155
{...otherProps}
156
+ css={{
157
+ // Prevent shrinking smaller than the title bar
158
+ // so that the title and close button are always visible.
159
+ minWidth: 'min-content',
160
+ }}
161
>
162
<EuiSplitPanel.Inner grow={false} color="subdued" paddingSize="none">
163
<EuiFlexGroup
0 commit comments