Projet

Général

Profil

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

Frédéric Péters, 31 mars 2020 14:26

Télécharger (1011 octets)

Voir les différences:

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

 static/includes/_misc.scss | 13 +++++++------
 1 file changed, 7 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
	h3, h4, h5, p, table {
15
		margin: 0.7em 0.5rem;
16
	}
17
	p, table, ul, ol {
18
		line-height: 1.4;
19
	}
19 20
}
20 21

  
21 22
@media screen and ($max-mobile-viewport) {
22
-