mirror of
https://github.com/vector-im/element-web.git
synced 2025-09-04 21:31:08 +02:00
Fix look of the untrusted device dialog (#7487)
This commit is contained in:
parent
9cb8ce7c20
commit
fe16f224ea
@ -23,4 +23,10 @@ limitations under the License.
|
|||||||
margin-left: 0;
|
margin-left: 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.mx_Dialog_buttons {
|
||||||
|
display: flex;
|
||||||
|
justify-content: end;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -57,10 +57,10 @@ const UntrustedDeviceDialog: React.FC<IProps> = ({ device, user, onFinished }) =
|
|||||||
<p>{ askToVerifyText }</p>
|
<p>{ askToVerifyText }</p>
|
||||||
</div>
|
</div>
|
||||||
<div className='mx_Dialog_buttons'>
|
<div className='mx_Dialog_buttons'>
|
||||||
<AccessibleButton element="button" kind="secondary" onClick={() => onFinished("legacy")}>
|
<AccessibleButton kind="primary_outline" onClick={() => onFinished("legacy")}>
|
||||||
{ _t("Manually Verify by Text") }
|
{ _t("Manually Verify by Text") }
|
||||||
</AccessibleButton>
|
</AccessibleButton>
|
||||||
<AccessibleButton element="button" kind="secondary" onClick={() => onFinished("sas")}>
|
<AccessibleButton kind="primary_outline" onClick={() => onFinished("sas")}>
|
||||||
{ _t("Interactively verify by Emoji") }
|
{ _t("Interactively verify by Emoji") }
|
||||||
</AccessibleButton>
|
</AccessibleButton>
|
||||||
<AccessibleButton kind="primary" onClick={() => onFinished(false)}>
|
<AccessibleButton kind="primary" onClick={() => onFinished(false)}>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user