Projet

Général

Profil

0001-lahague-add-class-to-add-cell-border-24255.patch

Josué Kouka, 18 juillet 2018 11:12

Télécharger (704 octets)

Voir les différences:

Subject: [PATCH] lahague: add class to add cell border (#24255)

 static/la-hague/_custom.scss | 11 +++++++++++
 1 file changed, 11 insertions(+)
static/la-hague/_custom.scss
92 92
		padding-top: 140px;
93 93
	}
94 94
}
95

  
96
#content div.cell,
97
div.block {
98
	&.with-border {
99
		border: 1px solid #ccc;
100
		> div > h2:first-child {
101
			@extend %title;
102
			width: 100%;
103
		}
104
	}
105
}
95
-