mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
17 lines
358 B
TypeScript
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)};
|
|
`,
|
|
};
|
|
}
|