styles.tsx 563 B

1234567891011121314151617181920212223
  1. import styled from '@emotion/styled';
  2. import {SectionHeading} from 'sentry/components/charts/styles';
  3. import GlobalSelectionLink from 'sentry/components/globalSelectionLink';
  4. import {space} from 'sentry/styles/space';
  5. export const SidebarSection = styled('section')`
  6. margin-bottom: ${space(2)};
  7. ${SectionHeading} {
  8. line-height: 1;
  9. }
  10. `;
  11. export const SectionHeadingWrapper = styled('div')`
  12. display: flex;
  13. justify-content: space-between;
  14. align-items: center;
  15. `;
  16. export const SectionHeadingLink = styled(GlobalSelectionLink)`
  17. display: flex;
  18. `;