(core) Fix "Column Label and ID" widget to avoid getting truncated on some browsers

Summary:
The widget showing column label, ID, and a button for keeping them linked, used
to get truncated depending on the default size of inputs. This makes it
resize dynamically based on the width of the creator panel.

Test Plan: CSS-only change, tested manually on FF and Chrome.

Reviewers: alexmojaki

Reviewed By: alexmojaki

Differential Revision: https://phab.getgrist.com/D3165
pull/115/head
Dmitry S 3 years ago
parent cf9e0585a9
commit ef1fc916e6

@ -396,6 +396,8 @@ const cssToggleButton = styled(cssIconButton, `
const cssColLabelBlock = styled('div', `
display: flex;
flex-direction: column;
flex: auto;
min-width: 80px;
`);
const cssColTieBlock = styled('div', `

Loading…
Cancel
Save