formattedCode.tsx 271 B

1234567891011
  1. import styled from '@emotion/styled';
  2. import {space} from 'sentry/styles/space';
  3. export const FormattedCode = styled('div')`
  4. padding: ${space(1)};
  5. margin-bottom: ${space(3)};
  6. border-radius: ${p => p.theme.borderRadius};
  7. overflow-x: auto;
  8. white-space: pre;
  9. `;