@botonic/react
Version:
Build Chatbots using React
21 lines • 547 B
JavaScript
import styled from 'styled-components';
export const ScrollableReplies = styled.div `
overscroll-behavior: contain;
-webkit-overflow-scrolling: touch;
`;
export const RepliesContainer = styled.div `
display: flex;
text-align: center;
justify-content: ${props => props.justify};
flex-wrap: ${props => props.wrap};
padding-bottom: 10px;
margin-left: 5px;
margin-right: 5px;
overflow-x: auto;
`;
export const ReplyContainer = styled.div `
flex: none;
display: inline-block;
margin: 3px;
`;
//# sourceMappingURL=styles.js.map