styles.ts 359 B

1234567891011121314151617
  1. import { css } from '@emotion/css';
  2. import { GrafanaTheme2 } from '@grafana/data';
  3. export function getPlaylistStyles(theme: GrafanaTheme2) {
  4. return {
  5. description: css`
  6. label: description;
  7. width: 555px;
  8. margin-bottom: 20px;
  9. `,
  10. subHeading: css`
  11. label: sub-heading;
  12. margin-bottom: ${theme.spacing(2)};
  13. `,
  14. };
  15. }