You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
358 B
16 lines
358 B
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)};
|
|
`,
|
|
};
|
|
}
|
|
|