scrollableTabs.tsx 287 B

1234567891011121314
  1. import styled from '@emotion/styled';
  2. import NavTabs from 'sentry/components/navTabs';
  3. const ScrollableTabs = styled(NavTabs)`
  4. display: flex;
  5. flex-wrap: nowrap;
  6. overflow-y: hidden;
  7. overflow-x: auto;
  8. white-space: nowrap;
  9. margin-bottom: 0;
  10. `;
  11. export default ScrollableTabs;