MessagesDate.style.js 402 B

12345678910111213141516171819
  1. import styled from "styled-components";
  2. export const MessagesDateWrapper = styled.div`
  3. margin-top: 10px;
  4. margin-left: 86px;
  5. `;
  6. export const MsgDate = styled.div`
  7. width: 400px;
  8. display: flex;
  9. justify-content: center;
  10. div{
  11. padding: 2px 12px;
  12. background-color: rgba(0, 0, 0, .2);
  13. font-size: 13px;
  14. color: #fff;
  15. border-radius: 12px;
  16. }
  17. `;