File size: 687 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 |
@import "@wordpress/base-styles/variables";
.two-factor-authentication__verification-code-form-wrapper {
.two-factor-authentication__actions {
padding: $grid-unit-30 $grid-unit-20;
@media (min-width: 480px) {
padding-inline: $grid-unit-30;
}
button {
display: block;
width: 100%;
margin-left: auto;
margin-right: auto;
}
}
&.isWoo {
padding: 0;
button.is-primary {
max-width: 404px !important;
}
.two-factor-authentication__actions {
padding: 40px 0 40px 0;
width: 100%;
max-width: 404px;
button {
max-width: 100% !important;
}
}
.two-factor-authentication__verification-code-form {
margin-bottom: 40px;
}
}
}
|