mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
12 lines
218 B
TypeScript
12 lines
218 B
TypeScript
import { css } from '@emotion/react';
|
|
|
|
import { GrafanaTheme2 } from '@grafana/data';
|
|
|
|
export function getGlobalStyles(theme: GrafanaTheme2) {
|
|
return css`
|
|
.moveable-control-box {
|
|
z-index: 999;
|
|
}
|
|
`;
|
|
}
|