Projet

Général

Profil

0001-scss-increase-default-line-height-of-text-cells-3643.patch

Frédéric Péters, 25 septembre 2019 14:15

Télécharger (984 octets)

Voir les différences:

Subject: [PATCH] scss: increase default line height of text cells (#36436)

 static/includes/_misc.scss | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)
static/includes/_misc.scss
10 10
//  border-icon: colored icon on left boder
11 11
$notification-style: classic !default;
12 12

  
13
div.textcell h3,
14
div.textcell h4,
15
div.textcell h5,
16
div.textcell p,
17
div.textcell table {
18
	margin: 0.7em 0.5rem;
13
div.textcell {
14
	line-height: 140%;
15
	h4, h5, p, table {
16
		margin: 0.7em 0.5rem;
17
	}
19 18
}
20 19

  
21 20
@media screen and (max-width: $mobile-limit) {
22
-