styled.ts 287 B

123456789101112
  1. import styled from 'styled-components';
  2. export const Wrapper = styled.div`
  3. background-color: white;
  4. padding: 16px 30px;
  5. border-radius: 4px;
  6. box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  7. border: solid 1px rgba(0, 0, 0, 0.12);
  8. display: inline-block;
  9. `;
  10. export default Wrapper;