arles-2020: reorder form buttons in mobile view (#40761)

This commit is contained in:
Serghei Mihai 2020-03-24 10:43:12 +01:00
parent b37b13f4ae
commit b9f2b41162
1 changed files with 12 additions and 2 deletions

View File

@ -437,8 +437,18 @@ div#user-files {
div.SubmitWidget {
@media screen and (max-width: $very-small-limit) {
button, button.cancel {
margin-right: 0.5rem;
&.widget {
margin-bottom: 1rem;
}
&.submit-button {
order: 2;
}
&.previous-button {
order: 1;
flex-grow: 1;
}
&.cancel-button {
order: 3;
}
}
}