styled.ts 405 B

1234567891011121314151617181920
  1. import styled from 'styled-components';
  2. export const Wrapper = styled.div`
  3. position: fixed;
  4. top: 86px;
  5. left: 267px;
  6. right: 0;
  7. margin: auto;
  8. max-width: 572px;
  9. width: 100%;
  10. height: 54px;
  11. border-radius: 4px;
  12. box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.38);
  13. background-color: white;
  14. display: flex;
  15. align-items: center;
  16. justify-content: space-between;
  17. padding: 0 8px;
  18. z-index: 2;
  19. `;