Projet

Général

Profil

0001-style-remove-top-bottom-margin-on-error-notice-edges.patch

Frédéric Péters, 03 mars 2018 18:34

Télécharger (707 octets)

Voir les différences:

Subject: [PATCH] style: remove top/bottom margin on error notice edges
 (#22246)

 gadjo/static/css/_forms.scss | 6 ++++++
 1 file changed, 6 insertions(+)
gadjo/static/css/_forms.scss
18 18

  
19 19
div.errornotice p {
20 20
	margin: 1ex 0;
21
	&:first-child {
22
		margin-top: 0;
23
	}
24
	&:last-child {
25
		margin-bottom: 0;
26
	}
21 27
}
22 28

  
23 29
div.error {
24
-