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

Fixes #959

parent 37e4ed6f
......@@ -6,6 +6,7 @@
- Various fixes for IE11.
- 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.
- #994 TypeError when using the `user.login` API.
- #995 `ChildNode.replaceWith` is not available in Internet Explorer or Safari. Use `Node.replaceChild` instead.
......
......@@ -1099,6 +1099,8 @@
#converse-embedded-chat,
#conversejs {
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
bottom: 0;
color: #777;
direction: ltr;
......
......@@ -1099,6 +1099,8 @@
#converse-embedded-chat,
#conversejs {
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
bottom: 0;
color: #777;
direction: ltr;
......
#conversejs {
left: 0px;
right: 0px;
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
}
.converse-chatroom {
font-size: 14px;
}
.intro {
padding: 0;
height: 100vh;
padding: 0;
height: 100vh;
}
......@@ -8,6 +8,8 @@
#converse-embedded-chat,
#conversejs {
padding-left: env(safe-area-inset-left);
padding-right: env(safe-area-inset-right);
bottom: 0;
color: $text-color;
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