Projet

Général

Profil

0001-caen-align-cell-titles-with-cell-content-62390.patch

Voir les différences:

Subject: [PATCH] caen: align cell titles with cell content (#62390)

 static/caen/_custom.scss | 7 +++++++
 static/caen/_vars.scss   | 2 +-
 2 files changed, 8 insertions(+), 1 deletion(-)
static/caen/_custom.scss
42 42
	font-size: $fz-2;
43 43
	border-bottom: none;
44 44
	margin-bottom: .8rem;
45
	padding: $title-padding;
45 46
	&::after {
46 47
		content: "";
47 48
		width: 50px;
......
490 491
	h1 {
491 492
		@extend .big-title;
492 493
	}
494
	h2:not(:first-child) {
495
		@extend %title;
496
		padding-left: 0;
497
		padding-right: 0;
498
		margin: $title-padding;
499
	}
493 500
}
494 501

  
495 502
//
static/caen/_vars.scss
47 47
$title-font-size: $fz-3;
48 48
$title-weight: 500;
49 49
$title-transform: uppercase;
50
$title-padding: 0.7rem 0;
50
$title-padding: 0.7rem 1rem;
51 51
$title-border-bottom: 2px solid black;
52 52
$title-background: none;
53 53

  
54
-