White background for 'They do not match' button (#29470)

This commit is contained in:
Andy Balaam
2025-03-12 08:04:17 +00:00
committed by GitHub
parent 273cdf41e9
commit bf6ae73d39

View File

@@ -165,12 +165,12 @@ export default class VerificationShowSas extends React.Component<IProps, IState>
} else {
confirm = (
<div className="mx_VerificationShowSas_buttonRow">
<AccessibleButton onClick={this.onDontMatchClick} kind="danger">
{_t("encryption|verification|sas_no_match")}
</AccessibleButton>
<AccessibleButton onClick={this.onMatchClick} kind="primary">
{_t("encryption|verification|sas_match")}
</AccessibleButton>
<AccessibleButton onClick={this.onDontMatchClick} kind="secondary">
{_t("encryption|verification|sas_no_match")}
</AccessibleButton>
</div>
);
}