ReplyMessage.style.js 965 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. // background-color: #00a6dd;
  13. margin-right: 10px;
  14. border-radius: 2px;
  15. `;
  16. export const ReplyMessageContent = styled.div`
  17. // display: flex;
  18. // flex-direction: column;
  19. // justify-content: space-around;
  20. width: 100%;
  21. overflow: hidden;
  22. `;
  23. export const ReplyMessageOwner = styled.div`
  24. color: ${props => props.owner ? '#E67E22' : '#3498DB'};
  25. letter-spacing: 0.8px;
  26. font-weight: 600;
  27. font-size: 14px;
  28. text-align: left;
  29. `;
  30. export const ReplyMessageText = styled.div`
  31. font-size: 12px;
  32. text-align: left;
  33. min-width: 100px;
  34. overflow: hidden;
  35. text-overflow: ellipsis;
  36. `;