orleans: reorder forms buttons (#36613)

This commit is contained in:
Serghei Mihai 2019-10-15 09:58:17 +02:00
parent bfbe936163
commit 9ada5d353a
1 changed files with 16 additions and 0 deletions

View File

@ -25,6 +25,9 @@
background: #D1D1D1;
color: #555;
}
@media screen and (max-width: $mobile-limit) {
margin-right: 0.5em;
}
}
#content div#sidebar {
@ -269,3 +272,16 @@ td.invoice-subject, th.invoice-subject, div#item h4.label {
display: none;
}
div.buttons {
div.submit-button {
float: right;
}
div.cancel-button {
float: left;
}
button {
@media screen and (max-width: $mobile-limit) {
margin-right: 0.5em;
}
}
}