globalStyles.ts 218 B

1234567891011
  1. import { css } from '@emotion/react';
  2. import { GrafanaTheme2 } from '@grafana/data';
  3. export function getGlobalStyles(theme: GrafanaTheme2) {
  4. return css`
  5. .moveable-control-box {
  6. z-index: 999;
  7. }
  8. `;
  9. }