Apply the Olympic effect to SAS Emoji Verification
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
786ddb8a7e
commit
33ec73095e
2 changed files with 28 additions and 5 deletions
|
@ -28,21 +28,42 @@ limitations under the License.
|
|||
|
||||
.mx_VerificationShowSas_emojiSas {
|
||||
text-align: center;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: center;
|
||||
margin: 25px 0;
|
||||
}
|
||||
|
||||
.mx_VerificationShowSas_emojiSas_block {
|
||||
display: inline-block;
|
||||
margin-left: 15px;
|
||||
margin-right: 15px;
|
||||
text-align: center;
|
||||
margin-bottom: 20px;
|
||||
margin-bottom: 30px;
|
||||
position: relative;
|
||||
// allow the blocks to grow to space themselves evenly up to a limit of 100px
|
||||
flex-grow: 1;
|
||||
max-width: 100px;
|
||||
}
|
||||
|
||||
.mx_VerificationShowSas_emojiSas_emoji {
|
||||
font-size: 48px;
|
||||
}
|
||||
|
||||
.mx_UserInfo .mx_VerificationShowSas_emojiSas_emoji {
|
||||
font-size: 32px; // in UserInfo use a smaller font-size to fit in a smaller space
|
||||
width: 43px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.mx_VerificationShowSas_emojiSas_label {
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
// allow the text to overflow the parent by 15px on each side
|
||||
// this is to keep the width of the parent consistent for spacing centrally via flexbox
|
||||
position: absolute;
|
||||
left: -15px;
|
||||
right: -15px;
|
||||
}
|
||||
|
||||
.mx_VerificationShowSas_emojiSas_break {
|
||||
flex-basis: 100%;
|
||||
}
|
||||
|
|
|
@ -62,7 +62,9 @@ export default class VerificationShowSas extends React.Component {
|
|||
</div>,
|
||||
);
|
||||
sasDisplay = <div className="mx_VerificationShowSas_emojiSas">
|
||||
{emojiBlocks}
|
||||
{emojiBlocks.slice(0, 4)}
|
||||
<div className="mx_VerificationShowSas_emojiSas_break" />
|
||||
{emojiBlocks.slice(4)}
|
||||
</div>;
|
||||
sasCaption = _t(
|
||||
"Verify this user by confirming the following emoji appear on their screen.",
|
||||
|
@ -105,8 +107,8 @@ export default class VerificationShowSas extends React.Component {
|
|||
|
||||
return <div className="mx_VerificationShowSas">
|
||||
<p>{sasCaption}</p>
|
||||
<p>{_t("To be secure, do this in person or use a trusted way to communicate.")}</p>
|
||||
{sasDisplay}
|
||||
<p>{_t("To be secure, do this in person or use a trusted way to communicate.")}</p>
|
||||
{confirm}
|
||||
</div>;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue