Commit 2c8c872a authored by JC Brand's avatar JC Brand

Fixes #959

parent 37e4ed6f
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
- Various fixes for IE11. - Various fixes for IE11.
- Could not register on Ejabberd 18. `"Missing attribute 'id' in tag qualified by namespace 'jabber:client'"` - Could not register on Ejabberd 18. `"Missing attribute 'id' in tag qualified by namespace 'jabber:client'"`
- #959 Add padding for the iPhone X (to the mobile CSS).
- #993 `moment.format` is not a function error when sending a message. - #993 `moment.format` is not a function error when sending a message.
- #994 TypeError when using the `user.login` API. - #994 TypeError when using the `user.login` API.
- #995 `ChildNode.replaceWith` is not available in Internet Explorer or Safari. Use `Node.replaceChild` instead. - #995 `ChildNode.replaceWith` is not available in Internet Explorer or Safari. Use `Node.replaceChild` instead.
......
...@@ -1099,6 +1099,8 @@ ...@@ -1099,6 +1099,8 @@
#converse-embedded-chat, #converse-embedded-chat,
#conversejs { #conversejs {
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
bottom: 0; bottom: 0;
color: #777; color: #777;
direction: ltr; direction: ltr;
......
...@@ -1099,6 +1099,8 @@ ...@@ -1099,6 +1099,8 @@
#converse-embedded-chat, #converse-embedded-chat,
#conversejs { #conversejs {
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
bottom: 0; bottom: 0;
color: #777; color: #777;
direction: ltr; direction: ltr;
......
#conversejs { #conversejs {
left: 0px; left: 0px;
right: 0px; right: 0px;
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
} }
.converse-chatroom { .converse-chatroom {
font-size: 14px; font-size: 14px;
} }
.intro { .intro {
padding: 0; padding: 0;
height: 100vh; height: 100vh;
} }
...@@ -8,6 +8,8 @@ ...@@ -8,6 +8,8 @@
#converse-embedded-chat, #converse-embedded-chat,
#conversejs { #conversejs {
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
bottom: 0; bottom: 0;
color: $text-color; color: $text-color;
direction: ltr; direction: ltr;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment