ChatPageData.style.js 358 B

1234567891011121314151617
  1. import styled from "styled-components";
  2. export const ChatPageWrapper = styled.div`
  3. width: 100%;
  4. height: 100vh;
  5. display: flex;
  6. flex-direction: column;
  7. `;
  8. export const ChatPageMain = styled.div`
  9. display: flex;
  10. flex-direction: column;
  11. justify-content: flex-end;
  12. backgraund-color: azure;
  13. height: calc(100vh - 54px);
  14. `;