@botonic/react
Version:
Build Chatbots using React
25 lines • 837 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.ReplyContainer = exports.RepliesContainer = exports.ScrollableReplies = void 0;
const tslib_1 = require("tslib");
const styled_components_1 = tslib_1.__importDefault(require("styled-components"));
exports.ScrollableReplies = styled_components_1.default.div `
overscroll-behavior: contain;
-webkit-overflow-scrolling: touch;
`;
exports.RepliesContainer = styled_components_1.default.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;
`;
exports.ReplyContainer = styled_components_1.default.div `
flex: none;
display: inline-block;
margin: 3px;
`;
//# sourceMappingURL=styles.js.map
;