Fix centering issue with sticker placeholder (#8404)

This commit is contained in:
Michael Telatynski 2022-04-25 18:36:32 +01:00 committed by GitHub
parent e3735311ab
commit f85e178fc1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 5 deletions

View file

@ -33,3 +33,10 @@ limitations under the License.
align-items: center;
justify-content: center;
}
.mx_MStickerBody_placeholder {
// centering
position: absolute;
left: calc(50% - 40px);
top: calc(50% - 40px);
}