- import styled from '@emotion/styled';
- import {space} from 'sentry/styles/space';
- export const FormattedCode = styled('div')`
- padding: ${space(1)};
- margin-bottom: ${space(3)};
- background: ${p => p.theme.backgroundSecondary};
- border-radius: ${p => p.theme.borderRadius};
- overflow-x: auto;
- white-space: pre;
- `;
|