Projet

Général

Profil

0002-meudon-put-submit-button-to-the-farest-right-27283.patch

Josué Kouka, 12 octobre 2018 10:32

Télécharger (844 octets)

Voir les différences:

Subject: [PATCH 2/2] meudon: put submit button to the farest right (#27283)

 static/meudon/_custom.scss | 8 ++++++++
 1 file changed, 8 insertions(+)
static/meudon/_custom.scss
114 114

  
115 115
div.buttons.submit {
116 116
	@include flexbox();
117
	@include justify-content(space-between);
117 118
	> div.submit-button {
119
		@include vendor-prefix(flex-grow, 1);
120
		@media screen and (max-width: $mobile-limit) {
121
			@include vendor-prefix(flex-grow, 0);
122
		}
123
		div {
124
			float: right;
125
		}
118 126
		order: 3;
119 127
	}
120 128
	> div.cancel-button {
121
-