styles.tsx 692 B

123456789101112131415161718192021222324252627282930313233
  1. import styled from '@emotion/styled';
  2. import space from 'app/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. `;
  10. export const DoubleHeaderContainer = styled('div')`
  11. display: grid;
  12. grid-template-columns: 1fr 1fr;
  13. padding: ${space(2)} ${space(3)} ${space(1)} ${space(3)};
  14. grid-gap: ${space(3)};
  15. `;
  16. export const ErrorPanel = styled('div')`
  17. display: flex;
  18. justify-content: center;
  19. align-items: center;
  20. flex: 1;
  21. flex-shrink: 0;
  22. overflow: hidden;
  23. height: 200px;
  24. position: relative;
  25. border-color: transparent;
  26. margin-bottom: 0;
  27. `;