mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -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;
|
|
}
|
|
`;
|
|
}
|