fix settings column width #2606

pull/2575/head
Mikael Finstad 8 months ago
parent 2511105aff
commit 25111079fd
No known key found for this signature in database
GPG Key ID: 25AB36E3E81CBC26

@ -7,6 +7,7 @@
}
.settings td:nth-child(2), .settings th:nth-child(2) {
padding: 1em 0 1em 0;
width: 15em;
}
.settings th {

@ -23,7 +23,7 @@ import { dangerColor } from '../colors';
const Button = ({ style, ...props }: ButtonProps) => <ButtonRaw style={{ padding: '.5em .9em', ...style }} {...props} />;
// eslint-disable-next-line react/jsx-props-no-spreading
const Select = ({ style, ...props }: SelectProps) => <SelectRaw style={{ padding: '.5em 1.9em .5em .9em', ...style }} {...props} />;
const Select = ({ style, ...props }: SelectProps) => <SelectRaw style={{ padding: '.5em 1.9em .5em .9em', maxWidth: '15em', ...style }} {...props} />;
// eslint-disable-next-line react/jsx-props-no-spreading

Loading…
Cancel
Save