styled.ts 298 B

12345678910111213141516
  1. import styled from 'styled-components';
  2. export const Wrapper = styled.div`
  3. position: fixed;
  4. top: 60px;
  5. left: 0;
  6. bottom: 0;
  7. right: auto;
  8. width: 267px;
  9. box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.24);
  10. background-color: white;
  11. `;
  12. export const BtnWrapper = styled.div`
  13. padding: 8px;
  14. `;