src/app/components/RelatedContentSection/RelatedContentItem/index.styles.ts

Summary

Maintainability
A
0 mins
Test Coverage
C
75%
import { css, Theme } from '@emotion/react';

export default {
  wrapper: () =>
    css({
      border: '0.1875rem solid transparent',
      height: '100%',
    }),
  promoFullWidth: () =>
    css({
      width: '100%',
    }),
  promoTitle: ({ spacings }: Theme) =>
    css({
      paddingBottom: `${spacings.FULL}rem`,
    }),
  promoTimestamp: ({ palette }: Theme) =>
    css({
      color: palette.GREY_6,
    }),
};