You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-05 23:10:41 +03:00
Fix button styling in verification bubbles
This commit is contained in:
@@ -43,6 +43,7 @@ limitations under the License.
|
|||||||
.mx_cryptoEvent_state, .mx_cryptoEvent_buttons {
|
.mx_cryptoEvent_state, .mx_cryptoEvent_buttons {
|
||||||
grid-column: 3;
|
grid-column: 3;
|
||||||
grid-row: 1 / 3;
|
grid-row: 1 / 3;
|
||||||
|
gap: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mx_cryptoEvent_buttons {
|
.mx_cryptoEvent_buttons {
|
||||||
|
|||||||
@@ -154,7 +154,7 @@ export default class MKeyVerificationRequest extends React.Component<IProps> {
|
|||||||
<AccessibleButton kind="danger" onClick={this.onRejectClicked}>
|
<AccessibleButton kind="danger" onClick={this.onRejectClicked}>
|
||||||
{_t("Decline")}
|
{_t("Decline")}
|
||||||
</AccessibleButton>
|
</AccessibleButton>
|
||||||
<AccessibleButton onClick={this.onAcceptClicked}>
|
<AccessibleButton kind="primary" onClick={this.onAcceptClicked}>
|
||||||
{_t("Accept")}
|
{_t("Accept")}
|
||||||
</AccessibleButton>
|
</AccessibleButton>
|
||||||
</div>);
|
</div>);
|
||||||
|
|||||||
Reference in New Issue
Block a user