styles.tsx 364 B

1234567891011121314151617
  1. import styled from '@emotion/styled';
  2. import space from 'sentry/styles/space';
  3. const Grid = styled('div')`
  4. font-size: ${p => p.theme.fontSizeSmall};
  5. display: grid;
  6. gap: ${space(1)};
  7. align-items: center;
  8. grid-template-columns: 16px repeat(2, 1fr) 3fr;
  9. `;
  10. const GridCell = styled('div')`
  11. ${p => p.theme.overflowEllipsis};
  12. `;
  13. export {Grid, GridCell};