ReplyMessage.style.js 929 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import styled from "styled-components";
  2. export const ReplyMessageWrapper = styled.div`
  3. height: 40px;
  4. display: flex;
  5. justify-content: left;
  6. margin-bottom: 8px;
  7. `;
  8. export const ReplyMessageDivider = styled.div`
  9. height: 100%;
  10. width: 3px;
  11. background-color: ${props => props.owner ? '#E67E22' : '#3498DB'} ;
  12. margin-right: 10px;
  13. border-radius: 2px;
  14. `;
  15. export const ReplyMessageContent = styled.div`
  16. // display: flex;
  17. // flex-direction: column;
  18. // justify-content: space-around;
  19. width: 100%;
  20. overflow: hidden;
  21. `;
  22. export const ReplyMessageOwner = styled.div`
  23. color: ${props => props.owner ? '#E67E22' : '#3498DB'};
  24. letter-spacing: 0.8px;
  25. font-weight: 600;
  26. font-size: 14px;
  27. text-align: left;
  28. `;
  29. export const ReplyMessageText = styled.div`
  30. font-size: 12px;
  31. text-align: left;
  32. min-width: 100px;
  33. overflow: hidden;
  34. text-overflow: ellipsis;
  35. `;