@rpg-engine/long-bow 0.3.24 → 0.3.26
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.
- package/dist/long-bow.cjs.development.js +5 -5
- package/dist/long-bow.cjs.development.js.map +1 -1
- package/dist/long-bow.cjs.production.min.js +1 -1
- package/dist/long-bow.cjs.production.min.js.map +1 -1
- package/dist/long-bow.esm.js +5 -5
- package/dist/long-bow.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/Chat/Chat.tsx +7 -6
package/package.json
CHANGED
|
@@ -112,7 +112,7 @@ export const Chat: React.FC<IChatProps> = ({
|
|
|
112
112
|
id="chat-send-button"
|
|
113
113
|
style={{ borderRadius: '20%' }}
|
|
114
114
|
>
|
|
115
|
-
<CiPaperplane size={
|
|
115
|
+
<CiPaperplane size={15} />
|
|
116
116
|
</Button>
|
|
117
117
|
</Column>
|
|
118
118
|
</Form>
|
|
@@ -140,17 +140,18 @@ const ChatContainer = styled.div<IContainerProps>`
|
|
|
140
140
|
width: ${({ width }) => width};
|
|
141
141
|
padding: 10px;
|
|
142
142
|
margin-top: 100px;
|
|
143
|
-
background-color: rgba(0, 0, 0, 0.
|
|
143
|
+
background-color: rgba(0, 0, 0, 0.2);
|
|
144
144
|
`;
|
|
145
145
|
|
|
146
146
|
const TextField = styled.input`
|
|
147
147
|
width: 100%;
|
|
148
|
-
background-color: rgba(0, 0, 0, 0.
|
|
148
|
+
background-color: rgba(0, 0, 0, 0.25) !important;
|
|
149
149
|
border: none !important;
|
|
150
|
+
max-height: 28px !important;
|
|
150
151
|
`;
|
|
151
152
|
|
|
152
153
|
const MessagesContainer = styled.div`
|
|
153
|
-
overflow:
|
|
154
|
+
overflow-y: scroll;
|
|
154
155
|
height: 70%;
|
|
155
156
|
margin-bottom: 10px;
|
|
156
157
|
`;
|
|
@@ -170,7 +171,7 @@ const Form = styled.form`
|
|
|
170
171
|
const Button = styled.button<IButtonProps>`
|
|
171
172
|
color: ${({ buttonColor }) => buttonColor};
|
|
172
173
|
background-color: ${({ buttonBackgroundColor }) => buttonBackgroundColor};
|
|
173
|
-
width:
|
|
174
|
-
height:
|
|
174
|
+
width: 28px;
|
|
175
|
+
height: 28px;
|
|
175
176
|
border: none !important;
|
|
176
177
|
`;
|