Add vertical spacing between buttons when they go over multiple lines ()

pull/21833/head
Ingrid 2021-12-09 10:41:33 +01:00 committed by GitHub
parent 9452a3cc09
commit 6c04c19a7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 0 deletions

View File

@ -413,6 +413,7 @@ input[type=text]:focus, input[type=password]:focus, textarea:focus {
@mixin mx_DialogButton;
margin-left: 0px;
margin-right: 8px;
margin-bottom: 5px;
// flip colours for the secondary ones
font-weight: 600;

View File

@ -20,4 +20,7 @@
.mx_CryptographyPanel_importExportButtons {
margin-bottom: 15px;
display: inline-flex;
flex-flow: wrap;
row-gap: 10px;
}

View File

@ -34,6 +34,9 @@ limitations under the License.
.mx_SecureBackupPanel_buttonRow {
margin: 1em 0;
display: inline-flex;
flex-flow: wrap;
row-gap: 10px;
:nth-child(n + 1) {
margin-inline-end: 10px;