grafana/public/app/features/playlist/styles.ts

17 lines
358 B
TypeScript

import { GrafanaTheme2 } from '@grafana/data';
import { css } from '@emotion/css';
export function getPlaylistStyles(theme: GrafanaTheme2) {
return {
description: css`
label: description;
width: 555px;
margin-bottom: 20px;
`,
subHeading: css`
label: sub-heading;
margin-bottom: ${theme.spacing(2)};
`,
};
}