mirror of https://github.com/vector-im/riot-web
Add vertical spacing between buttons when they go over multiple lines (#7314)
parent
9452a3cc09
commit
6c04c19a7a
res/css
|
@ -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;
|
||||
|
|
|
@ -20,4 +20,7 @@
|
|||
|
||||
.mx_CryptographyPanel_importExportButtons {
|
||||
margin-bottom: 15px;
|
||||
display: inline-flex;
|
||||
flex-flow: wrap;
|
||||
row-gap: 10px;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue