styles.tsx 201 B

123456789
  1. import {css} from '@emotion/react';
  2. import commonTheme from 'sentry/utils/theme';
  3. export const responsiveModal = css`
  4. @media (max-width: ${commonTheme.breakpoints.small}) {
  5. width: 100%;
  6. }
  7. `;