sampleDrawerBody.tsx 398 B

12345678910111213141516
  1. import styled from '@emotion/styled';
  2. import {DrawerBody} from 'sentry/components/globalDrawer/components';
  3. import {space} from 'sentry/styles/space';
  4. export const SampleDrawerBody = styled(DrawerBody)`
  5. flex-grow: 1;
  6. overflow: auto;
  7. overscroll-behavior: contain;
  8. /* Move the scrollbar to the left edge */
  9. scroll-margin: 0 ${space(2)};
  10. direction: rtl;
  11. * {
  12. direction: ltr;
  13. }
  14. `;