beem-component 1.1.3 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -133,8 +133,12 @@ BmChat.Details = function (_ref6) {
|
|
|
133
133
|
}));
|
|
134
134
|
};
|
|
135
135
|
|
|
136
|
-
BmChat.Footer = _styledComponents.default.div(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n ", "\n padding: 0.5rem
|
|
136
|
+
BmChat.Footer = _styledComponents.default.div(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n display: flex;\n flex-direction: column;\n ", "\n padding: 0.5rem 0.5rem;\n ", "\n ", "\n > *:not(:last-child) {\n margin-bottom: 0.5rem;\n }\n"])), ''
|
|
137
137
|
/* border-top: 0.071rem solid ${BmGrey200}; */
|
|
138
|
+
, ''
|
|
139
|
+
/* align-items: center; */
|
|
140
|
+
, ''
|
|
141
|
+
/* justify-content: center; */
|
|
138
142
|
);
|
|
139
143
|
var _default = BmChat;
|
|
140
144
|
exports.default = _default;
|
package/package.json
CHANGED
package/src/Chat.js
CHANGED
|
@@ -108,18 +108,15 @@ const Chat = () => {
|
|
|
108
108
|
<p>Outbound</p>
|
|
109
109
|
</BmChat.Details>
|
|
110
110
|
</BmChat.Body>
|
|
111
|
-
<BmChat.Footer>
|
|
112
|
-
<div class="footer">
|
|
111
|
+
<BmChat.Footer style={{ justifyContent: "flex-start" }}>
|
|
112
|
+
<div class="chat-footer">
|
|
113
113
|
<BmIcons icon={<EmojiEmotionsIcon />} size="xlarge" />
|
|
114
114
|
</div>
|
|
115
|
-
<div class="footer">
|
|
115
|
+
<div class="chat-footer">
|
|
116
116
|
<BmIcons icon={<EmojiEmotionsIcon />} size="xlarge" />
|
|
117
117
|
<BmIcons icon={<AttachFile />} size="xlarge" />
|
|
118
118
|
<BmIcons icon={<QuickreplyIcon />} size="xlarge" />
|
|
119
|
-
|
|
120
|
-
<BmMessage>
|
|
121
|
-
<BmMessageTabInput placeholder="Type your message" />
|
|
122
|
-
</BmMessage>
|
|
119
|
+
<BmInput placeholder="Enter Message" style={{ flex: 1 }} />
|
|
123
120
|
<BmIcons icon={<SendIcon />} size="xlarge" />
|
|
124
121
|
</div>
|
|
125
122
|
</BmChat.Footer>
|
|
@@ -137,9 +137,9 @@ BmChat.Footer = styled.div`
|
|
|
137
137
|
display: flex;
|
|
138
138
|
flex-direction: column;
|
|
139
139
|
${'' /* border-top: 0.071rem solid ${BmGrey200}; */}
|
|
140
|
-
padding: 0.5rem
|
|
141
|
-
align-items: center;
|
|
142
|
-
justify-content: center;
|
|
140
|
+
padding: 0.5rem 0.5rem;
|
|
141
|
+
${'' /* align-items: center; */}
|
|
142
|
+
${'' /* justify-content: center; */}
|
|
143
143
|
> *:not(:last-child) {
|
|
144
144
|
margin-bottom: 0.5rem;
|
|
145
145
|
}
|