RadioButton: Fix flex issue in master for radio buttons (#29664)

pull/29677/head
Torkel Ödegaard 5 years ago committed by GitHub
parent cf13c99eed
commit a4953bb65a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/grafana-ui/src/components/Forms/RadioButtonGroup/RadioButton.tsx

@ -80,7 +80,7 @@ const getRadioButtonStyles = stylesFactory((theme: GrafanaTheme, size: RadioButt
background: ${bg};
cursor: pointer;
z-index: 1;
flex: ${fullWidth ? `1 0 0` : 0};
flex: ${fullWidth ? `1 0 0` : 'none'};
text-align: center;
user-select: none;

Loading…
Cancel
Save