organization.tsx 807 B

1234567891011121314151617181920212223242526272829303132
  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(2)} ${space(4)} ${space(3)};
  9. margin-bottom: -20px; /* <footer> has margin-top: 20px; */
  10. /* No footer at smallest breakpoint */
  11. @media (max-width: ${p => p.theme.breakpoints[0]}) {
  12. margin-bottom: 0;
  13. }
  14. `;
  15. export const PageHeader = styled('div')`
  16. display: flex;
  17. justify-content: space-between;
  18. align-items: center;
  19. margin-bottom: ${space(2)};
  20. min-height: 32px;
  21. `;
  22. export const HeaderTitle = styled('h4')`
  23. ${p => p.theme.text.pageTitle};
  24. color: ${p => p.theme.headingColor};
  25. flex: 1;
  26. margin: 0;
  27. `;