Grafana-UI: Fix options margin when spanning on multiple lines (#33436)

pull/33419/head
Giordano Ricci 4 years ago committed by GitHub
parent 5bf6d7dad8
commit ea3d3a2218
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/grafana-ui/src/components/Select/getSelectStyles.ts

@ -90,7 +90,7 @@ export const getSelectStyles = stylesFactory((theme: GrafanaThemeV2) => {
line-height: 1;
background: ${theme.colors.background.secondary};
border-radius: ${theme.shape.borderRadius()};
margin: ${theme.spacing(0, 1, 0, 0)};
margin: ${theme.spacing(0.25, 1, 0.25, 0)};
padding: ${theme.spacing(0.25, 0, 0.25, 1)};
color: ${theme.colors.text.primary};
font-size: ${theme.typography.size.sm};

Loading…
Cancel
Save