src/app/components/Ad/MPU/index.styles.ts

Summary

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

const styles = {
  mpu: ({ mq }: Theme) =>
    css({
      /* MPU gets misaligned with the original padding at smaller breakpoints */
      [mq.GROUP_1_MAX_WIDTH]: {
        padding: 0,
      },
    }),
};

export default styles;