@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpg-engine/long-bow",
3
- "version": "0.3.24",
3
+ "version": "0.3.26",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
@@ -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={20} />
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.1);
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.2) !important;
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: hidden;
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: 50px;
174
- height: 40px;
174
+ width: 28px;
175
+ height: 28px;
175
176
  border: none !important;
176
177
  `;