react-in-out-textarea icon indicating copy to clipboard operation
react-in-out-textarea copied to clipboard

Feature: Mobile Design Options Overlay

Open igeligel opened this issue 5 years ago • 2 comments
trafficstars

Type of Feature

  • [ ] API Extension
  • [X] UI Feature
  • [ ] other:

How would it look like

Before:

chrome_2020-10-13_23-22-05

After

chrome_2020-10-13_23-21-53

// src/OptionsOverlay.tsx
// This style has to be extended
const OverlayOption = styled.div`
  box-sizing: border-box;
  font-size: 14px;
  font-family: Roboto;
  line-height: 30px;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 10px;
  display: inline-block;
  min-width: 15%;
  cursor: pointer;

  @media screen and (max-width: 720px) {
    min-width: auto;
    padding-right: 10px;
  }

  :hover {
    border-radius: 3px;
    background-color: #f5f5f5;
  }
`;

Resources

Files involved

igeligel avatar Oct 13 '20 21:10 igeligel

@igeligel if this isn't assigned already, I would love to work on it.

ARKEOLOGIST avatar Oct 17 '20 09:10 ARKEOLOGIST

Heey @ARKEOLOGIST Feel free to take it. It would be much easier to implement after #69 though.

igeligel avatar Oct 17 '20 10:10 igeligel