formattedCode.tsx 322 B

123456789101112
  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. background: ${p => p.theme.backgroundSecondary};
  7. border-radius: ${p => p.theme.borderRadius};
  8. overflow-x: auto;
  9. white-space: pre;
  10. `;