styled.ts 283 B

1234567891011121314
  1. import styled from 'styled-components';
  2. export const ToggleButton = styled.div`
  3. position: fixed;
  4. right: 20px;
  5. bottom: 15px;
  6. z-index: 2;
  7. box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.32);
  8. border-radius: 40px;
  9. width: 80px;
  10. height: 80px;
  11. `;
  12. export default ToggleButton;