src/app/components/Embeds/AmpIframeEmbed/index.styles.tsx

Summary

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

const styles = {
  embedDiv: ({ spacings }: Theme) =>
    css({
      maxWidth: '100%',
      paddingBottom: `${spacings.TRIPLE}rem`,
    }),
};

export default styles;