organization.tsx 611 B

1234567891011121314151617181920212223242526
  1. // Shared styles for the new org level pages with global project/env/time selection
  2. import styled from '@emotion/styled';
  3. import space from 'sentry/styles/space';
  4. export const PageContent = styled('div')`
  5. display: flex;
  6. flex-direction: column;
  7. flex: 1;
  8. padding: ${space(3)} ${space(4)};
  9. `;
  10. export const PageHeader = styled('div')`
  11. display: flex;
  12. justify-content: space-between;
  13. align-items: center;
  14. margin-bottom: ${space(2)};
  15. min-height: 32px;
  16. `;
  17. export const HeaderTitle = styled('h4')`
  18. ${p => p.theme.text.pageTitle};
  19. color: ${p => p.theme.headingColor};
  20. flex: 1;
  21. margin: 0;
  22. `;