MessagesArea.style.js 480 B

1234567891011121314151617181920
  1. import styled from "styled-components";
  2. import 'simplebar/dist/simplebar.min.css';
  3. import SimpleBar from 'simplebar-react';
  4. export const MessagesAreaWrapper = styled.div`
  5. width: 100%;
  6. overflow: hidden;
  7. `;
  8. export const SimpleBarWrapper = styled(SimpleBar)`
  9. height: 100%;
  10. overflow-x: hidden;
  11. div.simplebar-content-wrapper, div.simplebar-content, div.simplebar-vertical{
  12. display: flex;
  13. flex-direction: column-reverse;
  14. }
  15. `;