styles.tsx 251 B

123456789101112
  1. import styled from '@emotion/styled';
  2. import IdBadge from 'sentry/components/idBadge';
  3. export const ProjectBadgeContainer = styled('div')`
  4. display: flex;
  5. align-items: center;
  6. `;
  7. export const ProjectBadge = styled(IdBadge)`
  8. flex-shrink: 0;
  9. `;