wrapper.tsx 806 B

12345678910111213141516171819202122232425262728293031323334353637
  1. import styled from '@emotion/styled';
  2. import {space} from 'sentry/styles/space';
  3. const Wrapper = styled('div')`
  4. max-width: 769px;
  5. max-height: 525px;
  6. margin-left: auto;
  7. margin-right: auto;
  8. padding: ${space(4)};
  9. background-color: ${p => p.theme.surface400};
  10. z-index: 100;
  11. box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  12. border-radius: 10px;
  13. width: 100%;
  14. color: ${p => p.theme.gray300};
  15. mark {
  16. border-radius: 8px;
  17. padding: ${space(0.25)} ${space(0.5)} ${space(0.25)} ${space(0.5)};
  18. background: ${p => p.theme.gray100};
  19. margin-right: ${space(1)};
  20. }
  21. h2 {
  22. color: ${p => p.theme.gray500};
  23. }
  24. p {
  25. margin: ${space(1)} ${space(0.5)};
  26. }
  27. svg {
  28. margin: ${space(0.5)};
  29. }
  30. .encrypt-help {
  31. color: ${p => p.theme.gray500};
  32. }
  33. `;
  34. export default Wrapper;