detailsContainer.tsx 533 B

12345678910111213141516171819202122
  1. import styled from '@emotion/styled';
  2. import {space} from 'sentry/styles/space';
  3. const DetailsContainer = styled('div')`
  4. display: grid;
  5. gap: ${space(2)};
  6. grid-template-columns: 1fr 1fr;
  7. align-items: start;
  8. h6 {
  9. margin-top: ${space(3)};
  10. margin-bottom: ${space(2)};
  11. padding-bottom: ${space(0.5)};
  12. text-transform: uppercase;
  13. font-size: ${p => p.theme.fontSizeMedium};
  14. color: ${p => p.theme.subText};
  15. border-bottom: 1px solid ${p => p.theme.innerBorder};
  16. }
  17. `;
  18. export default DetailsContainer;