From 9544ba610bcf2409d922dc11df77b0c6fe867f7d Mon Sep 17 00:00:00 2001 From: David Boureau Date: Fri, 28 Apr 2017 13:39:09 +0200 Subject: [PATCH] Correction d'une probable erreur de copier/coller MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .h6-like a pour taille $h6-size, quand les grandes tailles sont définies, c'est vraisemblablement $h6-size-l (et non $h1-size-l) --- sass/library/_base.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sass/library/_base.scss b/sass/library/_base.scss index a542003..5c2c09c 100644 --- a/sass/library/_base.scss +++ b/sass/library/_base.scss @@ -142,7 +142,7 @@ h6, .#{$kna-namespace}h6-like { font-size: $h6-size; @if variable_exists(h6-size-l) and $h6-size-l != $h6-size { @include respond-to("tiny-up") { - font-size: $h1-size-l; + font-size: $h6-size-l; } } }