customerName.tsx 308 B

123456789101112131415
  1. import styled from '@emotion/styled';
  2. import {space} from 'sentry/styles/space';
  3. const CustomerName = styled('div')`
  4. display: grid;
  5. grid-template: max-content max-content / max-content 1fr;
  6. gap: ${space(0.5)} ${space(1)};
  7. > :first-child {
  8. grid-row: 1 / 3;
  9. }
  10. `;
  11. export default CustomerName;