ribbon.tsx 318 B

12345678910111213141516
  1. import styled from '@emotion/styled';
  2. import {space} from 'sentry/styles/space';
  3. export const ReadoutRibbon = styled('div')`
  4. display: flex;
  5. flex-wrap: wrap;
  6. column-gap: ${space(4)};
  7. row-gap: ${space(2)};
  8. `;
  9. export const ToolRibbon = styled('div')`
  10. display: flex;
  11. flex-wrap: wrap;
  12. gap: ${space(2)};
  13. `;