DropMediaFilesOptions.style.js 394 B

123456789101112131415161718
  1. import styled from "styled-components";
  2. export const DropMediaFilesOptionsWrap = styled.div`
  3. width: 50px;
  4. height: 30px;
  5. background-color: rgba(0, 0, 0, .2);
  6. border-radius: 5px;
  7. position: absolute;
  8. top: 10px;
  9. right: 10px;
  10. display: flex;
  11. justify-content: space-evenly;
  12. align-items: center;
  13. img{
  14. height: 16px;
  15. cursor: pointer;
  16. }
  17. `;