Projet

Général

Profil

0001-scss-add-variables-to-control-title-top-border.patch

Anonyme, 31 mai 2018 14:14

Télécharger (959 octets)

Voir les différences:

Subject: [PATCH 1/2] scss: add variables to control title top border (#...)

 static/includes/_title.scss | 2 ++
 1 file changed, 2 insertions(+)
static/includes/_title.scss
7 7
$title-border-radius: $border-radius !default;
8 8
$title-font-family: $font-family !default;
9 9
$title-border-bottom: 0 !default;
10
$title-border-top: 0 !default;
10 11
$title-padding: 1ex !default;
11 12

  
12 13
%title {
......
25 26
	font-family: $title-font-family;
26 27
	font-style: $title-font-style;
27 28
	border-bottom: $title-border-bottom;
29
	border-top: $title-border-top;
28 30
}
29
-