$font-stack-headings conditionnel
This commit is contained in:
parent
cfcf082c8a
commit
12239d8b07
4 changed files with 11 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "KNACSS",
|
"name": "KNACSS",
|
||||||
"version": "6.0.6",
|
"version": "6.0.7",
|
||||||
"homepage": "http://www.knacss.com/",
|
"homepage": "http://www.knacss.com/",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Raphaël GOETTER, Alsacreations"
|
"Raphaël GOETTER, Alsacreations"
|
||||||
|
|
|
@ -1,3 +1,6 @@
|
||||||
|
# changelog v6.0.7 (7 décembre 2016)
|
||||||
|
- application de `$font-stack-headings` uniquement si différent de `$font-stack-common`
|
||||||
|
|
||||||
# changelog v6.0.6 (2 décembre 2016)
|
# changelog v6.0.6 (2 décembre 2016)
|
||||||
- Grillade : redéfinition du périmètre de `-small` : passe de `(min-width: ($tiny + 1)) and (max-width: $small)` à `(min-width: ($tiny + 1)) and (max-width: $medium)` (de 544px à 991px par défaut)
|
- Grillade : redéfinition du périmètre de `-small` : passe de `(min-width: ($tiny + 1)) and (max-width: $small)` à `(min-width: ($tiny + 1)) and (max-width: $medium)` (de 544px à 991px par défaut)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "knacss",
|
"name": "knacss",
|
||||||
"version": "6.0.6",
|
"version": "6.0.7",
|
||||||
"homepage": "http://www.knacss.com/",
|
"homepage": "http://www.knacss.com/",
|
||||||
"bugs": "https://github.com/alsacreations/KNACSS/issues",
|
"bugs": "https://github.com/alsacreations/KNACSS/issues",
|
||||||
"author": [
|
"author": [
|
||||||
|
|
|
@ -71,10 +71,16 @@ figure {
|
||||||
|
|
||||||
h1, .#{$kna-namespace}h1-like {
|
h1, .#{$kna-namespace}h1-like {
|
||||||
font-size: $h1-size;
|
font-size: $h1-size;
|
||||||
|
@if $font-stack-headings != $font-stack-common {
|
||||||
|
font-family: $font-stack-headings;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h2, .#{$kna-namespace}h2-like {
|
h2, .#{$kna-namespace}h2-like {
|
||||||
font-size: $h2-size;
|
font-size: $h2-size;
|
||||||
|
@if $font-stack-headings != $font-stack-common {
|
||||||
|
font-family: $font-stack-headings;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h3, .#{$kna-namespace}h3-like {
|
h3, .#{$kna-namespace}h3-like {
|
||||||
|
|
Loading…
Reference in a new issue