2020-01-24 17:16:46 +01:00
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.mx_UserInfo {
|
|
|
|
.mx_VerificationPanel_verified_section .mx_E2EIcon {
|
2020-01-30 23:43:14 +01:00
|
|
|
// Override general user info margin
|
|
|
|
margin: 0 auto !important;
|
2020-01-24 17:16:46 +01:00
|
|
|
}
|
2020-01-27 18:17:05 +01:00
|
|
|
|
|
|
|
.mx_VerificationPanel_qrCode {
|
|
|
|
padding: 4px 4px 0 4px;
|
|
|
|
background: white;
|
|
|
|
border-radius: 4px;
|
|
|
|
width: max-content;
|
|
|
|
max-width: 100%;
|
2020-01-30 23:43:14 +01:00
|
|
|
// Override general user info margin
|
|
|
|
margin: 0 auto !important;
|
2020-01-27 18:17:05 +01:00
|
|
|
|
|
|
|
canvas {
|
|
|
|
// override height and width which are set on the element directly
|
|
|
|
height: auto !important;
|
|
|
|
width: 100% !important;
|
|
|
|
max-width: 240px;
|
|
|
|
}
|
|
|
|
}
|
2020-01-24 17:16:46 +01:00
|
|
|
}
|