wrapper.tsx 908 B

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