sidebarDropdownMenu.styled.tsx 417 B

12345678910111213141516
  1. import {css} from '@emotion/react';
  2. import {Theme} from 'sentry/utils/theme';
  3. const SidebarDropdownMenu = (p: {theme: Theme}) => css`
  4. position: absolute;
  5. background: ${p.theme.background};
  6. color: ${p.theme.textColor};
  7. border-radius: 4px;
  8. box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08), 0 4px 20px 0 rgba(0, 0, 0, 0.3);
  9. padding: 5px 0;
  10. width: 250px;
  11. z-index: 1000;
  12. `;
  13. export default SidebarDropdownMenu;