MessageDraft.style.js 867 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. import styled from 'styled-components';
  2. export const MessageDraftWrapper = styled.div`
  3. height: 50px;
  4. display: flex;
  5. justify-content: left;
  6. align-items: center;
  7. box-sizing: border-box;
  8. width: 100%;
  9. padding: 0 16px;
  10. `;
  11. export const MessageDraftContainer = styled.div`
  12. display: flex;
  13. justify-content: left;
  14. padding: 0 20px;
  15. width: 100%;
  16. overflow: hidden;
  17. `;
  18. export const MessageDraftInfo = styled.div`
  19. overflow: hidden;
  20. margin-left: 10px;
  21. `;
  22. export const MessageOwnerDraftName = styled.div`
  23. color: #00a6dd;
  24. font-weight: 600;
  25. font-size: 14px;
  26. text-align: left;
  27. `;
  28. export const MessageDraftText = styled.div`
  29. color: #a1a1a1;
  30. font-size: 14px;
  31. overflow: hidden !important;
  32. text-overflow: ellipsis;
  33. text-align: left;
  34. `;
  35. export const MessageDraftBoxWrapper = styled.div`
  36. `;