styles.tsx 708 B

12345678910111213141516171819202122232425262728293031323334
  1. import styled from '@emotion/styled';
  2. import {space} from 'sentry/styles/space';
  3. export const GridCell = styled('div')`
  4. font-size: 14px;
  5. `;
  6. export const GridCellNumber = styled(GridCell)`
  7. text-align: right;
  8. font-variant-numeric: tabular-nums;
  9. flex-grow: 1;
  10. `;
  11. export const DoubleHeaderContainer = styled('div')`
  12. display: grid;
  13. grid-template-columns: 1fr 1fr;
  14. padding: ${space(2)} ${space(3)} ${space(1)} ${space(3)};
  15. gap: ${space(3)};
  16. `;
  17. export const ErrorPanel = styled('div')`
  18. display: flex;
  19. justify-content: center;
  20. align-items: center;
  21. flex: 1;
  22. flex-shrink: 0;
  23. overflow: hidden;
  24. height: 200px;
  25. position: relative;
  26. border-color: transparent;
  27. margin-bottom: 0;
  28. `;